IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 22, 2004, 11:22:44 AM (22 years ago)
Author:
evanalst
Message:

Update psMemCheckLeaks function.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/sysUtils/tst_psMemory.c

    r2273 r2393  
    66*  @author Robert DeSonia, MHPCC
    77*
    8 *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
    9 *  @date $Date: 2004-11-04 01:05:00 $
     8*  @version $Revision: 1.28 $ $Name: not supported by cvs2svn $
     9*  @date $Date: 2004-11-22 21:20:32 $
    1010*
    1111*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    385385    psLogMsg( __func__, PS_LOG_INFO, "following psMemCheckLeaks call should produce one instance." );
    386386
    387     nLeaks = psMemCheckLeaks( currentId, &blks, stderr );
     387    nLeaks = psMemCheckLeaks( currentId, &blks, stderr, false );
    388388
    389389    if ( nLeaks != 1 ) {
     
    402402
    403403    psLogMsg( __func__, PS_LOG_INFO, "Testing psMemCheckLeaks again with a different leak location" );
    404     psMemCheckLeaks(currentId,NULL,stderr);
     404    psMemCheckLeaks(currentId,NULL,stderr, false);
    405405
    406406    for ( lcv = 0;lcv < numBuffers;lcv++ ) {
     
    415415    psLogMsg( __func__, PS_LOG_INFO, "following psMemCheckLeaks call should produce one error." );
    416416
    417     nLeaks = psMemCheckLeaks( currentId, &blks, stderr );
     417    nLeaks = psMemCheckLeaks( currentId, &blks, stderr, false );
    418418
    419419    if ( nLeaks != 1 ) {
     
    445445    psLogMsg( __func__, PS_LOG_INFO, "following psMemCheckLeaks call should produce two errors." );
    446446
    447     nLeaks = psMemCheckLeaks( currentId, &blks, stderr );
     447    nLeaks = psMemCheckLeaks( currentId, &blks, stderr, false );
    448448
    449449    if ( nLeaks != 2 ) {
Note: See TracChangeset for help on using the changeset viewer.