IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 24, 2007, 12:14:48 PM (20 years ago)
Author:
jhoblitt
Message:

merge jch-memory branch - overhaul of memory subsystem

Location:
trunk/psLib/test/mathtypes
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/mathtypes/tap_psVectorSort_01.c

    r10808 r11265  
    1212 *  @author  Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.1 $  $Name: not supported by cvs2svn $
    15  *  @date  $Date: 2006-12-18 19:10:56 $
     14 *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
     15 *  @date  $Date: 2007-01-24 22:14:48 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    147147    ok ( ! psMemCheckLeaks(0, NULL, stdout, false),"Memory leaks not detected");
    148148
    149     psS32 nBad = psMemCheckCorruption(0);
     149    psS32 nBad = psMemCheckCorruption(stderr, false);
    150150    ok(!nBad, "Found %d bad memory blocks\n", nBad);
    151151}
  • trunk/psLib/test/mathtypes/tap_psVectorSort_02.c

    r10808 r11265  
    1414 *  @author  Ross Harman, MHPCC
    1515 *
    16  *  @version $Revision: 1.1 $  $Name: not supported by cvs2svn $
    17  *  @date  $Date: 2006-12-18 19:10:56 $
     16 *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
     17 *  @date  $Date: 2007-01-24 22:14:48 $
    1818 *
    1919 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    130130    psS32 nLeaks = psMemCheckLeaks(0, NULL, stdout, false);
    131131    ok(!nLeaks, "Found %d memory leaks\n", nLeaks);
    132     psS32 nBad = psMemCheckCorruption(0);
     132    psS32 nBad = psMemCheckCorruption(stderr, false);
    133133    ok(!nBad, "Found %d bad memory blocks\n", nBad);
    134134}
  • trunk/psLib/test/mathtypes/tap_psVectorSort_03.c

    r10808 r11265  
    1212 *  @author  Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.1 $  $Name: not supported by cvs2svn $
    15  *  @date  $Date: 2006-12-18 19:10:56 $
     14 *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
     15 *  @date  $Date: 2007-01-24 22:14:48 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6868    psS32 nLeaks = psMemCheckLeaks(0, NULL, stdout, false);
    6969    ok(!nLeaks, "Found %d memory leaks\n", nLeaks);
    70     psS32 nBad = psMemCheckCorruption(0);
     70    psS32 nBad = psMemCheckCorruption(stderr, false);
    7171    ok(!nBad, "Found %d bad memory blocks\n", nBad);
    7272}
  • trunk/psLib/test/mathtypes/tap_psVectorSort_04.c

    r10808 r11265  
    99 *  @author  Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.1 $  $Name: not supported by cvs2svn $
    12  *  @date  $Date: 2006-12-18 19:10:56 $
     11 *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
     12 *  @date  $Date: 2007-01-24 22:14:48 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3737    psS32 nLeaks = psMemCheckLeaks(0, NULL, stdout, false);
    3838    ok(!nLeaks, "Found %d memory blocks\n", nLeaks);
    39     psS32 nBad = psMemCheckCorruption(0);
     39    psS32 nBad = psMemCheckCorruption(stderr, false);
    4040    ok(!nBad, "Found %d bad memory blocks\n", nBad);
    4141}
Note: See TracChangeset for help on using the changeset viewer.