Index: trunk/psLib/test/sys/tap_psStringSubstitute.c
===================================================================
--- trunk/psLib/test/sys/tap_psStringSubstitute.c	(revision 8224)
+++ trunk/psLib/test/sys/tap_psStringSubstitute.c	(revision 8234)
@@ -29,5 +29,6 @@
         ok(input && strcmp(input, ORIGINAL) == 0, "output = %s", input);
         //        psFree(input);
-        ok(psMemCheckLeaks(0, NULL, stdout, false) == 0, "Memory Leaks");
+        //        ok(psMemCheckLeaks(0, NULL, stdout, false) == 0, "Memory Leaks");
+        mem();
     }
 
@@ -38,4 +39,5 @@
         ok(output && strcmp(output, CORRECTED) == 0, "output = %s", output);
         psFree(output);
+        mem();
     }
 
@@ -46,4 +48,5 @@
         ok(output && strcmp(output, CORRECTED) == 0, "output = %s", output);
         psFree(output);
+        mem();
     }
 
@@ -52,4 +55,5 @@
         psString output = psStringSubstitute(NULL, "XXX", ",");
         ok(!output, "output = %s", output);
+        mem();
     }
 
@@ -60,4 +64,5 @@
         ok(output && strcmp(output, input) == 0, "output = %s", output);
         psFree(output);
+        mem();
     }
 
@@ -68,4 +73,5 @@
         ok(output && strcmp(output, "This is! a! test case! to check.") == 0, "output = %s", output);
         psFree(output);
+        mem();
     }
 
@@ -78,4 +84,5 @@
            "output = %s", output);
         psFree(output);
+        mem();
     }
 
