Index: trunk/psLib/test/dataManip/tst_psFunc02.c
===================================================================
--- trunk/psLib/test/dataManip/tst_psFunc02.c	(revision 3682)
+++ trunk/psLib/test/dataManip/tst_psFunc02.c	(revision 4447)
@@ -360,31 +360,34 @@
     /****************************************************************************/
     /****************************************************************************/
-    testStatus = true;
-    printPositiveTestHeader(stdout,
-                            "psFunction functions",
-                            "psSpline1DAllocGeneric(): negative order");
-
-    bounds = psVectorAlloc(5,PS_TYPE_F32);
-    bounds->n = bounds->nalloc;
-    for(psU32 n = 0; n < 5; n++ ) {
-        bounds->data.F32[n] = (n+1) * 2;
-    }
-    psLogMsg(__func__,PS_LOG_INFO,"Following should generate an error message.");
-    tmpSpline = psSpline1DAllocGeneric(bounds, -1);
-    if (tmpSpline != NULL) {
-        psError(PS_ERR_UNKNOWN,true,"Did not return null for negative order");
-        return 10;
-    }
+    ///XXX: REMOVED FOLLOWING TEST AFTER CHANGING TO UNSIGNED INT///
+    /*    testStatus = true;
+        printPositiveTestHeader(stdout,
+                                "psFunction functions",
+                                "psSpline1DAllocGeneric(): negative order");
+     
+        bounds = psVectorAlloc(5,PS_TYPE_F32);
+        bounds->n = bounds->nalloc;
+        for(psU32 n = 0; n < 5; n++ ) {
+            bounds->data.F32[n] = (n+1) * 2;
+        }
+        psLogMsg(__func__,PS_LOG_INFO,"Following should generate an error message.");
+        tmpSpline = psSpline1DAllocGeneric(bounds, -1);
+        if (tmpSpline != NULL) {
+            psError(PS_ERR_UNKNOWN,true,"Did not return null for negative order");
+            return 10;
+        }
+        psFree(bounds);
+        psMemCheckCorruption(1);
+        memLeaks = psMemCheckLeaks(currentId,NULL,stderr,false);
+        if (0 != memLeaks) {
+            psError(PS_ERR_UNKNOWN,true,"Memory Leaks! (%d leaks)", memLeaks);
+            testStatus = false;
+        }
+        printFooter(stdout,
+                    "psFunctions functions",
+                    "psSpline1DAllocGeneric(): negative order",
+                    testStatus);
+    */
     psFree(bounds);
-    psMemCheckCorruption(1);
-    memLeaks = psMemCheckLeaks(currentId,NULL,stderr,false);
-    if (0 != memLeaks) {
-        psError(PS_ERR_UNKNOWN,true,"Memory Leaks! (%d leaks)", memLeaks);
-        testStatus = false;
-    }
-    printFooter(stdout,
-                "psFunctions functions",
-                "psSpline1DAllocGeneric(): negative order",
-                testStatus);
 
     /****************************************************************************/
