Index: trunk/psLib/test/sysUtils/tst_psString.c
===================================================================
--- trunk/psLib/test/sysUtils/tst_psString.c	(revision 3996)
+++ trunk/psLib/test/sysUtils/tst_psString.c	(revision 4433)
@@ -20,6 +20,6 @@
  *  @author  Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.15 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2005-05-20 01:40:40 $
+ *  @version $Revision: 1.16 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2005-06-30 00:33:03 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -38,5 +38,5 @@
 static psS32 testStringCopy03(void);
 static psS32 testStringCopy04(void);
-static psS32 testStringCopy05(void);
+//static psS32 testStringCopy05(void);
 static psS32 testStringCopy06(void);
 
@@ -57,5 +57,5 @@
                               {testStringCopy03, 3, "Verify empty string copy with length", 0, false},
                               {testStringCopy04, 4, "Copy string to larger string", 0, false},
-                              {testStringCopy05, 5, "Copy string with negative size", 0, false},
+                              //                              {testStringCopy05, 5, "Copy string with negative size", 0, false},
                               {testStringCopy06, 6, "Verify creation of string literal", 0, false},
 
@@ -239,21 +239,24 @@
 }
 
-static psS32 testStringCopy05(void)
-{
-    char  *strResult;
-    char  stringval[20] = "E R R O R";
-    psS32   negativeSize = -5;
-
-    // Test point #6 Copy string with negative size - psStringNCopy
-    strResult = psStringNCopy(stringval, negativeSize);
-    if ( strResult != NULL ) {
-        fprintf(stderr,"Failed test point #6 return value = %p expected NULL\n",
-                strResult);
-        return 1;
-    }
-    // Memory should not have been allocated
-
-    return 0;
-}
+// XXX This test needs to be modified to check for maximum size
+//     This will require a mod to psStringNCopy source to check for maximum size
+//
+//static psS32 testStringCopy05(void)
+//{
+//    char  *strResult;
+//    char  stringval[20] = "E R R O R";
+//    psS32   negativeSize = -5;
+//
+//    // Test point #6 Copy string with negative size - psStringNCopy
+//    strResult = psStringNCopy(stringval, negativeSize);
+//    if ( strResult != NULL ) {
+//        fprintf(stderr,"Failed test point #6 return value = %p expected NULL\n",
+//                strResult);
+//        return 1;
+//    }
+//    // Memory should not have been allocated
+//
+//    return 0;
+//}
 
 static psS32 testStringCopy06(void)
