Index: trunk/psLib/test/collections/tst_psArray.c
===================================================================
--- trunk/psLib/test/collections/tst_psArray.c	(revision 2204)
+++ trunk/psLib/test/collections/tst_psArray.c	(revision 2273)
@@ -12,6 +12,6 @@
  *  @author  Ross Harman, MHPCC
  *
- *  @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2004-10-27 00:57:33 $
+ *  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2004-11-04 01:05:00 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -43,5 +43,5 @@
     psArray *psArr = psArrayAlloc(5);
     if (psArr->nalloc != 5) {
-        psError(__func__,"psArray didn't have proper number of elements.");
+        psError(PS_ERR_UNKNOWN, true,"psArray didn't have proper number of elements.");
         return 1;
     }
@@ -64,5 +64,5 @@
         printf("ts[%d].x = %d ts[%d].y = %.2f\n", i, ts->x, i, ts->y);
         if (fabsf(ts->x - 10*i) > 0.01f || fabsf(ts->y - 10.1*i) > 0.01f) {
-            psError(__func__,"Couldn't properly get elements from array.");
+            psError(PS_ERR_UNKNOWN, true,"Couldn't properly get elements from array.");
             return 2;
         }
@@ -70,10 +70,10 @@
     printf("array size = %d\n", psArr->nalloc);
     if (psArr->nalloc != 5) {
-        psError(__func__,"Array Size wrong");
+        psError(PS_ERR_UNKNOWN, true,"Array Size wrong");
         return 3;
     }
     printf("array population = %d\n", psArr->n);
     if (psArr->n != 5) {
-        psError(__func__,"Array population wrong");
+        psError(PS_ERR_UNKNOWN, true,"Array population wrong");
         return 4;
     }
@@ -98,5 +98,5 @@
         printf("ts[%d].x = %d ts[%d].y = %.2f\n", i, ts->x, i, ts->y);
         if (fabsf(ts->x - 10*i) > 0.01f || fabsf(ts->y - 10.1*i) > 0.01f) {
-            psError(__func__,"Couldn't properly get elements from array.");
+            psError(PS_ERR_UNKNOWN, true,"Couldn't properly get elements from array.");
             return 5;
         }
@@ -104,10 +104,10 @@
     printf("array size = %d\n", psArr->nalloc);
     if (psArr->nalloc != 10) {
-        psError(__func__,"Array Size wrong");
+        psError(PS_ERR_UNKNOWN, true,"Array Size wrong");
         return 6;
     }
     printf("array population = %d\n", psArr->n);
     if (psArr->n != 10) {
-        psError(__func__,"Array Population wrong");
+        psError(PS_ERR_UNKNOWN, true,"Array Population wrong");
         return 7;
     }
@@ -122,5 +122,5 @@
         printf("ts[%d].x = %d ts[%d].y = %.2f\n", i, ts->x, i, ts->y);
         if (fabsf(ts->x - 10*i) > 0.01f || fabsf(ts->y - 10.1*i) > 0.01f) {
-            psError(__func__,"Couldn't properly get elements from array.");
+            psError(PS_ERR_UNKNOWN, true,"Couldn't properly get elements from array.");
             return 8;
         }
@@ -128,10 +128,10 @@
     printf("array size = %d\n", psArr->nalloc);
     if (psArr->nalloc != 3) {
-        psError(__func__,"Array Size wrong");
+        psError(PS_ERR_UNKNOWN, true,"Array Size wrong");
         return 9;
     }
     printf("array population = %d\n", psArr->n);
     if (psArr->n != 3) {
-        psError(__func__,"Array Population wrong");
+        psError(PS_ERR_UNKNOWN, true,"Array Population wrong");
         return 10;
     }
