Index: trunk/psLib/test/image/tst_psImage.c
===================================================================
--- trunk/psLib/test/image/tst_psImage.c	(revision 949)
+++ trunk/psLib/test/image/tst_psImage.c	(revision 953)
@@ -6,6 +6,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-09 20:34:34 $
+ *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-09 21:20:53 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -48,5 +48,4 @@
 int testImageAlloc(void)
 {
-    int currentId = psMemGetId();
     psImage* image = NULL;
     unsigned int sizes = 6;
@@ -224,10 +223,4 @@
             // children is freed.
             psImageFree(image);
-            if (psMemCheckLeaks(currentId,NULL,stderr) != 0) {
-                psError(__func__,"Memory Leaks Detected");
-                return 64;
-            }
-            psMemCheckCorruption(1);
-
         }
     }
@@ -235,9 +228,4 @@
     // #548: Verify program execution doesn't stop, if the input psImage structure pointer is null.
     psImageFree(NULL);
-    if (psMemCheckLeaks(currentId,NULL,stderr) != 0) {
-        psError(__func__,"Memory Leaks Detected");
-        return 64;
-    }
-    psMemCheckCorruption(1);
 
     // #548: Verify no memory leaks or corruption are detected after a valid psImage structure with multiple
@@ -249,10 +237,4 @@
     psImageFree(image);
 
-    if (psMemCheckLeaks(currentId,NULL,stderr) != 0) {
-        psError(__func__,"Memory Leaks Detected");
-        return 64;
-    }
-    psMemCheckCorruption(1);
-
     return 0;
 }
@@ -261,5 +243,4 @@
 int testImageSubset(void)
 {
-    int currentId = psMemGetId();
     psImage preSubsetStruct;
     psImage* original;
@@ -519,12 +500,4 @@
     psImageFree(original);
 
-    // Verify no memory leaks or corruption are detected for a psImage structure
-    // Verify no memory leaks or corruption are detected for a psImage structure
-    if (psMemCheckLeaks(currentId,NULL,stderr) != 0) {
-        psError(__func__,"Memory Leaks Detected");
-        return 64;
-    }
-    psMemCheckCorruption(1);
-
     return 0;
 }
@@ -537,5 +510,4 @@
     unsigned int c = 128;
     unsigned int r = 256;
-    int currentId = psMemGetId();
 
     img = psImageAlloc(c,r,PS_TYPE_F32);
@@ -627,9 +599,4 @@
     psImageFree(img2);
 
-    if (psMemCheckLeaks(currentId,NULL,stderr) != 0) {
-        psAbort(__func__,"Memory Leaks!");
-    }
-    psMemCheckCorruption(1);
-
     return 0;
 }
@@ -642,5 +609,4 @@
     psF32 min;
     psF32 max;
-    int currentId = psMemGetId();
     int numClipped = 0;
     int retVal;
@@ -740,9 +706,4 @@
     }
 
-    if (psMemCheckLeaks(currentId,NULL,stderr) != 0) {
-        psAbort(__func__,"Memory Leaks!");
-    }
-    psMemCheckCorruption(1);
-
     return 0;
 }
@@ -753,5 +714,4 @@
     unsigned int c = 128;
     unsigned int r = 256;
-    int currentId = psMemGetId();
     int numClipped = 0;
     int retVal;
@@ -825,10 +785,4 @@
     }
 
-
-    if (psMemCheckLeaks(currentId,NULL,stderr) != 0) {
-        psAbort(__func__,"Memory Leaks!");
-    }
-    psMemCheckCorruption(1);
-
     return 0;
 }
