Index: trunk/psLib/test/sys/tap_psString.c
===================================================================
--- trunk/psLib/test/sys/tap_psString.c	(revision 13741)
+++ trunk/psLib/test/sys/tap_psString.c	(revision 13799)
@@ -20,6 +20,6 @@
  *  @author  Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.9 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2007-05-01 00:08:52 $
+ *  @version $Revision: 1.10 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2007-06-13 23:32:11 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -38,5 +38,5 @@
     psLogSetFormat("HLNM");
     psLogSetLevel(PS_LOG_INFO);
-    plan_tests(72);
+    plan_tests(68);
 
 
@@ -200,5 +200,5 @@
     }
 
-
+#if 0
     // testStrAppend01()
     {
@@ -212,5 +212,5 @@
         ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
     }
-
+#endif
 
     // testStrAppend02()
@@ -251,5 +251,5 @@
     }
 
-
+#if 0
     // testStrPrepend01()
     {
@@ -263,5 +263,5 @@
         ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
     }
-
+#endif
 
     // testStrPrepend02()
@@ -376,5 +376,5 @@
         ok(!strncmp((psString)(strList->head->next->next->next->data), " to check", 10),
              "psStringSplit to return expected strings");
-    
+
         psFree(strList);
         //Return correct psList output for string of zero length case
@@ -410,25 +410,25 @@
         output = psStringCopy(nullTest);
         ok(output == NULL, "psStringCopy to return NULL for NULL input string");
-    
+
         //psStringNCopy should return NULL for NULL input string
         output = psStringNCopy(nullTest, 100);
         ok(output == NULL, "psStringNCopy to return NULL for NULL input string");
-    
+
         //psStringAppend should return 0 for NULL input destination
         outSize = psStringAppend(nullDest, "%s", "");
         ok(outSize == 0, "psStringAppend to return 0 for NULL input destination");
-    
+
         //psStringAppend should return 0 for NULL input format
         outSize = psStringAppend(test, nullTest);
         ok(outSize == 0, "psStringAppend to return 0 for NULL input format");
-    
+
         //psStringPrepend should return 0 for NULL input destination
         outSize = psStringPrepend(nullDest, " ");
         ok(outSize == 0, "psStringPrepend to return 0 for NULL input destination");
-    
+
         //psStringPrepend should return 0 for NULL input format
         outSize = psStringPrepend(test, nullTest);
         ok(outSize == 0, "psStringPrepend to return 0 for NULL input format");
-    
+
         //psStringSplit should return empty list for NULL input string
         psList *nullList = NULL;
@@ -436,5 +436,5 @@
         ok(!psListLength(nullList), "psStringSplit to return NULL for NULL input string");
         psFree(nullList);
-    
+
         nullList = NULL;
         //psStringSplit should return NULL for NULL input splitter
@@ -454,5 +454,5 @@
         ok(psMemCheckType(PS_DATA_STRING, str), "psString allocated");
         psFree(str);
-    
+
         char charStr[10];
         ok(!psMemCheckType(PS_DATA_STRING, charStr),
