IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 8, 2007, 5:40:47 PM (19 years ago)
Author:
eugene
Message:

incrementing the dbconfig / ippdb version number

File:
1 edited

Legend:

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

    r13649 r13739  
    10821082        warpSkyfileRow  *object;
    10831083
    1084         object = warpSkyfileRowAlloc(-64, "a string", "a string", "a string", 64.64, 64.64    );
     1084        object = warpSkyfileRowAlloc(-64, "a string", "a string", "a string", "a string", 64.64, 64.64    );
    10851085
    10861086        if (!object) {
     
    11041104            exit(EXIT_FAILURE);
    11051105        }
     1106        if (strncmp(object->path_base, "a string", MAX_STRING_LENGTH)) {
     1107            psFree(object);
     1108            exit(EXIT_FAILURE);
     1109        }
    11061110        if (!object->bg == 64.64) {
    11071111            psFree(object);
     
    11961200        diffSkyfileRow  *object;
    11971201
    1198         object = diffSkyfileRowAlloc(-64, "a string", 64.64, 64.64    );
     1202        object = diffSkyfileRowAlloc(-64, "a string", "a string", 64.64, 64.64    );
    11991203
    12001204        if (!object) {
     
    12101214            exit(EXIT_FAILURE);
    12111215        }
     1216        if (strncmp(object->path_base, "a string", MAX_STRING_LENGTH)) {
     1217            psFree(object);
     1218            exit(EXIT_FAILURE);
     1219        }
    12121220        if (!object->bg == 64.64) {
    12131221            psFree(object);
     
    12861294        stackSumSkyfileRow *object;
    12871295
    1288         object = stackSumSkyfileRowAlloc(-64, "a string", 64.64, 64.64    );
     1296        object = stackSumSkyfileRowAlloc(-64, "a string", "a string", 64.64, 64.64    );
    12891297
    12901298        if (!object) {
     
    12971305        }
    12981306        if (strncmp(object->uri, "a string", MAX_STRING_LENGTH)) {
     1307            psFree(object);
     1308            exit(EXIT_FAILURE);
     1309        }
     1310        if (strncmp(object->path_base, "a string", MAX_STRING_LENGTH)) {
    12991311            psFree(object);
    13001312            exit(EXIT_FAILURE);
Note: See TracChangeset for help on using the changeset viewer.