Index: /trunk/psLib/test/collections/tst_psArray01.c
===================================================================
--- /trunk/psLib/test/collections/tst_psArray01.c	(revision 2392)
+++ /trunk/psLib/test/collections/tst_psArray01.c	(revision 2393)
@@ -12,6 +12,6 @@
  *  @author  Ross Harman, MHPCC
  *
- *  @version $Revision: 1.1 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2004-11-19 21:58:59 $
+ *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2004-11-22 21:22:44 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -119,5 +119,5 @@
         psFree(mySt[i]);
     }
-    if( psMemCheckLeaks(0, NULL, stdout) != 0) {
+    if( psMemCheckLeaks(0, NULL, stdout, false) != 0) {
         psError(PS_ERR_UNKNOWN,true,"Memory leaks detected.");
         return 110;
Index: /trunk/psLib/test/collections/tst_psVectorSort_04.c
===================================================================
--- /trunk/psLib/test/collections/tst_psVectorSort_04.c	(revision 2392)
+++ /trunk/psLib/test/collections/tst_psVectorSort_04.c	(revision 2393)
@@ -9,6 +9,6 @@
  *  @author  Ross Harman, MHPCC
  *
- *  @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2004-10-27 00:57:33 $
+ *  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2004-11-22 21:22:44 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -34,5 +34,5 @@
     printPositiveTestHeader(stdout, "psVectorSort", "Free vectors");
     psFree(goodOut);
-    psS32 nLeaks = psMemCheckLeaks(0, NULL, stdout);
+    psS32 nLeaks = psMemCheckLeaks(0, NULL, stdout, false);
     if(nLeaks) {
         printf("ERROR: Found %d memory blocks\n", nLeaks);
Index: /trunk/psLib/test/dataManip/tst_psMinimize07.c
===================================================================
--- /trunk/psLib/test/dataManip/tst_psMinimize07.c	(revision 2392)
+++ /trunk/psLib/test/dataManip/tst_psMinimize07.c	(revision 2393)
@@ -82,5 +82,5 @@
 
     psMemCheckCorruption(1);
-    memLeaks = psMemCheckLeaks(currentId,NULL,NULL);
+    memLeaks = psMemCheckLeaks(currentId,NULL,NULL,false);
     if (0 != memLeaks) {
         psAbort(__func__,"Memory Leaks! (%d leaks)", memLeaks);
@@ -149,5 +149,5 @@
 
     psMemCheckCorruption(1);
-    memLeaks = psMemCheckLeaks(currentId,NULL,NULL);
+    memLeaks = psMemCheckLeaks(currentId,NULL,NULL,false);
     if (0 != memLeaks) {
         psAbort(__func__,"Memory Leaks! (%d leaks)", memLeaks);
Index: /trunk/psLib/test/sysUtils/tst_psMemory.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psMemory.c	(revision 2392)
+++ /trunk/psLib/test/sysUtils/tst_psMemory.c	(revision 2393)
@@ -6,6 +6,6 @@
 *  @author Robert DeSonia, MHPCC
 *
-*  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-11-04 01:05:00 $
+*  @version $Revision: 1.28 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-11-22 21:20:32 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -385,5 +385,5 @@
     psLogMsg( __func__, PS_LOG_INFO, "following psMemCheckLeaks call should produce one instance." );
 
-    nLeaks = psMemCheckLeaks( currentId, &blks, stderr );
+    nLeaks = psMemCheckLeaks( currentId, &blks, stderr, false );
 
     if ( nLeaks != 1 ) {
@@ -402,5 +402,5 @@
 
     psLogMsg( __func__, PS_LOG_INFO, "Testing psMemCheckLeaks again with a different leak location" );
-    psMemCheckLeaks(currentId,NULL,stderr);
+    psMemCheckLeaks(currentId,NULL,stderr, false);
 
     for ( lcv = 0;lcv < numBuffers;lcv++ ) {
@@ -415,5 +415,5 @@
     psLogMsg( __func__, PS_LOG_INFO, "following psMemCheckLeaks call should produce one error." );
 
-    nLeaks = psMemCheckLeaks( currentId, &blks, stderr );
+    nLeaks = psMemCheckLeaks( currentId, &blks, stderr, false );
 
     if ( nLeaks != 1 ) {
@@ -445,5 +445,5 @@
     psLogMsg( __func__, PS_LOG_INFO, "following psMemCheckLeaks call should produce two errors." );
 
-    nLeaks = psMemCheckLeaks( currentId, &blks, stderr );
+    nLeaks = psMemCheckLeaks( currentId, &blks, stderr, false );
 
     if ( nLeaks != 2 ) {
