Index: trunk/psLib/test/sys/tap_psMemory.c
===================================================================
--- trunk/psLib/test/sys/tap_psMemory.c	(revision 11663)
+++ trunk/psLib/test/sys/tap_psMemory.c	(revision 11665)
@@ -6,6 +6,8 @@
 *  @author Robert DeSonia, MHPCC
 *
-*  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2007-01-04 22:34:06 $
+*  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2007-02-06 20:31:57 $
+*
+*  XXXX: Several tests fail with an Abort and are commented out.
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -38,38 +40,62 @@
 psS32 main(psS32 argc, char* argv[])
 {
-    plan_tests(1);
+    psLogSetFormat("HLNM");
+    psLogSetLevel(PS_LOG_INFO);
+    plan_tests(15);
 
     void TPFreeReferencedMemory( void );
-    TPFreeReferencedMemory();
+    if (1) {
+        TPFreeReferencedMemory();
+    }
 
     void TPOutOfMemory( void );
-    TPOutOfMemory();
+    ok(false, "XXXX: Skipping TPOutOfMemory() because of test abort failure");
+    if (0) {
+        TPOutOfMemory();
+    }
 
     void TPReallocOutOfMemory( void );
-    TPReallocOutOfMemory();
+    ok(false, "XXXX: Skipping TPReallocOutOfMemory() because of test abort failure");
+    if (0) {
+        TPReallocOutOfMemory();
+    }
 
     void TPCheckBufferPositive( void );
-    TPCheckBufferPositive();
+    if (1) {
+        TPCheckBufferPositive();
+    }
 
     void TPrealloc( void );
-    TPrealloc();
+    if (1) {
+        TPrealloc();
+    }
 
     void TPallocCallback( void );
-    TPallocCallback();
+    if (1) {
+        TPallocCallback();
+    }
 
     void TPcheckLeaks( void );
-    TPcheckLeaks();
+    ok(false, "XXXX: Skipping TPcheckLeaks() because of test abort failure");
+    if (0) {
+        TPcheckLeaks();
+    }
 
     // psMemProblemCallbackSet() has been removed -JH
+    ok(false, "XXXX: Skipping psMemProblemCallbackSet() because of test abort failure");
     #if 0
 
     void TPmemCorruption( void );
-    TPmemCorruption();
+    if (1) {
+        TPmemCorruption();
+    }
     #endif
 
     void TPmultipleFree( void );
-    TPmultipleFree();
-}
-
+    ok(false, "XXXX: Skipping TPmultipleFree() because of test abort failure");
+    if (0) {
+        TPmultipleFree();
+    }
+}
 
 // Testpoint #449, psAlloc shall allocate memory blocks writeable by caller.
