Index: /trunk/psLib/test/sysUtils/tst_psMemory.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psMemory.c	(revision 954)
+++ /trunk/psLib/test/sysUtils/tst_psMemory.c	(revision 955)
@@ -6,6 +6,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-04 02:08:42 $
+ *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-09 21:26:34 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -70,5 +70,4 @@
     const int size = 100;
     int failed = 0;
-    int currentId = psMemGetId();
 
     psLogMsg(__func__,PS_LOG_INFO,"psAlloc shall allocate memory blocks writeable by caller.\n");
@@ -90,6 +89,5 @@
     }
 
-    psMemCheckLeaks(currentId,NULL,NULL);
-    psMemCheckCorruption(1);
+    psFree(mem);
 
     return failed;
@@ -100,5 +98,4 @@
     // create memory
     int* mem;
-    int currentId = psMemGetId();
     int ref = 0;
 
@@ -144,7 +141,4 @@
     psFree(mem);
 
-    psMemCheckLeaks(currentId,NULL,NULL);
-    psMemCheckCorruption(1);
-
     return 0;
 }
@@ -154,5 +148,4 @@
 int TPOutOfMemory(void)
 {
-    int currentId = psMemGetId();
     int* mem1 = NULL;
     int* mem2 = NULL;
@@ -182,7 +175,4 @@
     psFree(mem4);
 
-    psMemCheckLeaks(currentId,NULL,NULL);
-    psMemCheckCorruption(1);
-
     return 0;
 }
@@ -191,5 +181,4 @@
 int TPrealloc(void)
 {
-    int currentId = psMemGetId();
     int* mem1;
     int* mem2;
@@ -246,7 +235,4 @@
     psFree(mem3);
 
-    psMemCheckLeaks(currentId,NULL,NULL);
-    psMemCheckCorruption(1);
-
     return 0;
 }
@@ -305,7 +291,4 @@
         return 1;
     }
-
-    psMemCheckLeaks(currentId,NULL,NULL);
-    psMemCheckCorruption(1);
 
     return 0;
@@ -413,7 +396,4 @@
     psFree(buffers[3]);
 
-    psMemCheckLeaks(currentId,NULL,NULL);
-    psMemCheckCorruption(1);
-
     return 0;
 }
