IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 4, 2006, 12:26:17 PM (20 years ago)
Author:
jhoblitt
Message:

VERSION 0.0.45

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippdb/tests/alloc.c

    r9213 r9229  
    11751175        detNormalizedImfileRow *object;
    11761176
    1177         object = detNormalizedImfileRowAlloc(-32, -32, "a string", "a string", "a string", "a string"    );
     1177        object = detNormalizedImfileRowAlloc(-32, -32, "a string", "a string", 64.64, 64.64, 64.64, "a string", "a string"    );
    11781178
    11791179        if (!object) {
     
    11941194        }
    11951195        if (strncmp(object->uri, "a string", MAX_STRING_LENGTH)) {
     1196            psFree(object);
     1197            exit(EXIT_FAILURE);
     1198        }
     1199        if (!object->bg == 64.64) {
     1200            psFree(object);
     1201            exit(EXIT_FAILURE);
     1202        }
     1203        if (!object->bg_stdev == 64.64) {
     1204            psFree(object);
     1205            exit(EXIT_FAILURE);
     1206        }
     1207        if (!object->bg_mean_stdev == 64.64) {
    11961208            psFree(object);
    11971209            exit(EXIT_FAILURE);
Note: See TracChangeset for help on using the changeset viewer.