IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 993


Ignore:
Timestamp:
Jun 10, 2004, 3:39:30 PM (22 years ago)
Author:
harman
Message:

Added testpoints

Location:
trunk/psLib/test/collections
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/collections/tst_psBitSet_02.c

    r717 r993  
    1010 *  @author  Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
    13  *  @date  $Date: 2004-05-18 19:22:34 $
     12 *  @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
     13 *  @date  $Date: 2004-06-11 01:39:30 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2828    // Test A - Create two psBitSets
    2929    printPositiveTestHeader(stdout,"psBitSet", "Create two psBitSets");
    30     psBitSet* bs1 = psBitSetAlloc(3);
    31     psBitSet* bs2 = psBitSetAlloc(3);
     30    psBitSet* bs1 = psBitSetAlloc(24);
     31    psBitSet* bs2 = psBitSetAlloc(24);
    3232    binOut = psBitSetToString(bs1);
    3333    printf("%s\n", binOut);
     
    5252    // Test B - Perform binary AND with psBitSets
    5353    printPositiveTestHeader(stdout,"psBitSet", "Perform binary AND with psBitSets");
    54     psBitSet* outbs = psBitSetAlloc(3);
     54    psBitSet* outbs = psBitSetAlloc(24);
    5555    outbs = psBitSetOp(outbs, bs1, "AND", bs2);
    5656    binOut = psBitSetToString(outbs);
  • trunk/psLib/test/collections/tst_psBitSet_03.c

    r717 r993  
    1010 *  @author  Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
    13  *  @date  $Date: 2004-05-18 19:22:34 $
     12 *  @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
     13 *  @date  $Date: 2004-06-11 01:39:30 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2828    // Test A - Create two psBitSets
    2929    printPositiveTestHeader(stdout,"psBitSet", "Create two psBitSets");
    30     psBitSet* bs1 = psBitSetAlloc(3);
    31     psBitSet* bs2 = psBitSetAlloc(3);
     30    psBitSet* bs1 = psBitSetAlloc(24);
     31    psBitSet* bs2 = psBitSetAlloc(24);
    3232    binOut = psBitSetToString(bs1);
    3333    printf("%s\n", binOut);
     
    5252    // Test B - Perform binary OR with psBitSets
    5353    printPositiveTestHeader(stdout,"psBitSet", "Perform binary OR with psBitSets");
    54     psBitSet* outbs = psBitSetAlloc(3);
     54    psBitSet* outbs = psBitSetAlloc(24);
    5555    outbs = psBitSetOp(outbs, bs1, "OR", bs2);
    5656    binOut = psBitSetToString(outbs);
Note: See TracChangeset for help on using the changeset viewer.