Index: /trunk/psLib/test/sysUtils/builddir/tst_psTrace00.d
===================================================================
--- /trunk/psLib/test/sysUtils/builddir/tst_psTrace00.d	(revision 1135)
+++ /trunk/psLib/test/sysUtils/builddir/tst_psTrace00.d	(revision 1136)
@@ -3,6 +3,6 @@
   ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
   ../../include/psString.h ../../include/psType.h ../../include/psList.h \
-  ../../include/psVector.h ../../include/psHash.h \
-  ../../include/psScalar.h ../../include/psImage.h \
+  ../../include/psCompare.h ../../include/psVector.h \
+  ../../include/psHash.h ../../include/psScalar.h ../../include/psImage.h \
   ../../include/psBitSet.h ../../include/psSort.h ../../include/psStats.h \
   ../../include/psMatrix.h ../../include/psMatrixVectorArithmetic.h \
Index: /trunk/psLib/test/sysUtils/builddir/tst_psTrace01.d
===================================================================
--- /trunk/psLib/test/sysUtils/builddir/tst_psTrace01.d	(revision 1135)
+++ /trunk/psLib/test/sysUtils/builddir/tst_psTrace01.d	(revision 1136)
@@ -3,6 +3,6 @@
   ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
   ../../include/psString.h ../../include/psType.h ../../include/psList.h \
-  ../../include/psVector.h ../../include/psHash.h \
-  ../../include/psScalar.h ../../include/psImage.h \
+  ../../include/psCompare.h ../../include/psVector.h \
+  ../../include/psHash.h ../../include/psScalar.h ../../include/psImage.h \
   ../../include/psBitSet.h ../../include/psSort.h ../../include/psStats.h \
   ../../include/psMatrix.h ../../include/psMatrixVectorArithmetic.h \
Index: /trunk/psLib/test/sysUtils/builddir/tst_psTrace02.d
===================================================================
--- /trunk/psLib/test/sysUtils/builddir/tst_psTrace02.d	(revision 1135)
+++ /trunk/psLib/test/sysUtils/builddir/tst_psTrace02.d	(revision 1136)
@@ -3,6 +3,6 @@
   ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
   ../../include/psString.h ../../include/psType.h ../../include/psList.h \
-  ../../include/psVector.h ../../include/psHash.h \
-  ../../include/psScalar.h ../../include/psImage.h \
+  ../../include/psCompare.h ../../include/psVector.h \
+  ../../include/psHash.h ../../include/psScalar.h ../../include/psImage.h \
   ../../include/psBitSet.h ../../include/psSort.h ../../include/psStats.h \
   ../../include/psMatrix.h ../../include/psMatrixVectorArithmetic.h \
Index: /trunk/psLib/test/sysUtils/builddir/tst_psTrace03.d
===================================================================
--- /trunk/psLib/test/sysUtils/builddir/tst_psTrace03.d	(revision 1135)
+++ /trunk/psLib/test/sysUtils/builddir/tst_psTrace03.d	(revision 1136)
@@ -3,6 +3,6 @@
   ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
   ../../include/psString.h ../../include/psType.h ../../include/psList.h \
-  ../../include/psVector.h ../../include/psHash.h \
-  ../../include/psScalar.h ../../include/psImage.h \
+  ../../include/psCompare.h ../../include/psVector.h \
+  ../../include/psHash.h ../../include/psScalar.h ../../include/psImage.h \
   ../../include/psBitSet.h ../../include/psSort.h ../../include/psStats.h \
   ../../include/psMatrix.h ../../include/psMatrixVectorArithmetic.h \
Index: /trunk/psLib/test/sysUtils/builddir/tst_psTrace04.d
===================================================================
--- /trunk/psLib/test/sysUtils/builddir/tst_psTrace04.d	(revision 1135)
+++ /trunk/psLib/test/sysUtils/builddir/tst_psTrace04.d	(revision 1136)
@@ -3,6 +3,6 @@
   ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
   ../../include/psString.h ../../include/psType.h ../../include/psList.h \
-  ../../include/psVector.h ../../include/psHash.h \
-  ../../include/psScalar.h ../../include/psImage.h \
+  ../../include/psCompare.h ../../include/psVector.h \
+  ../../include/psHash.h ../../include/psScalar.h ../../include/psImage.h \
   ../../include/psBitSet.h ../../include/psSort.h ../../include/psStats.h \
   ../../include/psMatrix.h ../../include/psMatrixVectorArithmetic.h \
Index: /trunk/psLib/test/sysUtils/tst_psTrace00.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psTrace00.c	(revision 1135)
+++ /trunk/psLib/test/sysUtils/tst_psTrace00.c	(revision 1136)
@@ -16,5 +16,5 @@
                             "psTraceSetLevel() and psTraceGetLevel()");
     for (i=0;i<10;i++) {
-        psTraceSetLevel(".", i);
+        (void)psTraceSetLevel(".", i);
         lev = psTraceGetLevel(".");
         if (lev != i) {
@@ -24,8 +24,8 @@
         }
     }
-    psTraceSetLevel(".", 3);
+    (void)psTraceSetLevel(".", 3);
 
     for (i=5;i<10;i++) {
-        psTraceSetLevel(".NODE00", i);
+        (void)psTraceSetLevel(".NODE00", i);
         lev = psTraceGetLevel(".NODE00");
         if (lev != i) {
@@ -44,7 +44,7 @@
 
 
-    psTraceSetLevel(".NODE00.NODE01", 4);
+    (void)psTraceSetLevel(".NODE00.NODE01", 4);
     for (i=0;i<10;i++) {
-        psTraceSetLevel(".NODE00.NODE01", i);
+        (void)psTraceSetLevel(".NODE00.NODE01", i);
         lev = psTraceGetLevel(".NODE00.NODE01");
         if (lev != i) {
Index: /trunk/psLib/test/sysUtils/tst_psTrace01.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psTrace01.c	(revision 1135)
+++ /trunk/psLib/test/sysUtils/tst_psTrace01.c	(revision 1136)
@@ -17,5 +17,5 @@
 
     for (i=0;i<10;i++) {
-        psTraceSetLevel(".", i);
+        (void)psTraceSetLevel(".", i);
         psTraceReset();
 
@@ -27,8 +27,16 @@
         }
     }
-    psTraceSetLevel(".", 5);
-    psTraceSetLevel(".a", 4);
-    psTraceSetLevel(".a.b", 3);
-    psTraceSetLevel(".a.b.c", 2);
+    (void)psTraceSetLevel(".", 5);
+    (void)psTraceSetLevel(".a", 4);
+    (void)psTraceSetLevel(".a.b", 3);
+    (void)psTraceSetLevel(".a.b.c", 2);
+    if ((5 != psTraceGetLevel(".")) ||
+            (4 != psTraceGetLevel(".a")) ||
+            (3 != psTraceGetLevel(".a.b")) ||
+            (2 != psTraceGetLevel(".a.b.c"))) {
+        printf("ERROR: trace levels were not settable?\n");
+        successFlag = false;
+    }
+
     psTraceReset();
     if ((DEFAULT_TRACE_LEVEL != psTraceGetLevel(".")) ||
Index: /trunk/psLib/test/sysUtils/tst_psTrace02.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psTrace02.c	(revision 1135)
+++ /trunk/psLib/test/sysUtils/tst_psTrace02.c	(revision 1136)
@@ -29,23 +29,23 @@
                                 "psTrace()");
 
-        psTraceSetLevel(".", 4);
+        (void)psTraceSetLevel(".", 4);
         psTrace(".", 5, "(0) This message should not be displayed (%x)\n",
                 0xbeefface);
-        psTraceSetLevel(".", 7);
+        (void)psTraceSetLevel(".", 7);
         psTrace(".", 5, "(0) This message should be displayed (%x)\n",
                 0xbeefface);
 
-        psTraceSetLevel(".a", 4);
+        (void)psTraceSetLevel(".a", 4);
         psTrace(".a", 5, "(1) This message should not be displayed (%x)\n",
                 0xbeefface);
-        psTraceSetLevel(".a", 7);
+        (void)psTraceSetLevel(".a", 7);
         psTrace(".a", 5, "(1) This message should be displayed (%x)\n",
                 0xbeefface);
 
 
-        psTraceSetLevel(".a.b", 4);
+        (void)psTraceSetLevel(".a.b", 4);
         psTrace(".a.b", 5, "(2) This message should not be displayed (%x)\n",
                 0xbeefface);
-        psTraceSetLevel(".a.b", 7);
+        (void)psTraceSetLevel(".a.b", 7);
         psTrace(".a.b", 5, "(2) This message should be displayed (%x)\n",
                 0xbeefface);
Index: /trunk/psLib/test/sysUtils/tst_psTrace03.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psTrace03.c	(revision 1135)
+++ /trunk/psLib/test/sysUtils/tst_psTrace03.c	(revision 1136)
@@ -13,19 +13,19 @@
                             "psTracePrintLevels()");
 
-    psTraceSetLevel(".", 9);
+    (void)psTraceSetLevel(".", 9);
 
-    psTraceSetLevel(".a", 8);
-    psTraceSetLevel(".b", 7);
-    psTraceSetLevel(".c", 5);
+    (void)psTraceSetLevel(".a", 8);
+    (void)psTraceSetLevel(".b", 7);
+    (void)psTraceSetLevel(".c", 5);
 
-    psTraceSetLevel(".a.a", 4);
-    psTraceSetLevel(".a.b", 3);
+    (void)psTraceSetLevel(".a.a", 4);
+    (void)psTraceSetLevel(".a.b", 3);
 
-    psTraceSetLevel(".b.a", 2);
-    psTraceSetLevel(".b.b", 1);
+    (void)psTraceSetLevel(".b.a", 2);
+    (void)psTraceSetLevel(".b.b", 1);
 
-    psTraceSetLevel(".c.a", 0);
-    psTraceSetLevel(".c.b", 3);
-    psTraceSetLevel(".c.c", 5);
+    (void)psTraceSetLevel(".c.a", 0);
+    (void)psTraceSetLevel(".c.b", 3);
+    (void)psTraceSetLevel(".c.c", 5);
 
     psTracePrintLevels();
Index: /trunk/psLib/test/sysUtils/tst_psTrace04.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psTrace04.c	(revision 1135)
+++ /trunk/psLib/test/sysUtils/tst_psTrace04.c	(revision 1136)
@@ -12,19 +12,19 @@
                             "psTrace functions",
                             "Testing psTraceReset()");
-    psTraceSetLevel(".", 9);
+    (void)psTraceSetLevel(".", 9);
 
-    psTraceSetLevel(".a", 8);
-    psTraceSetLevel(".b", 7);
-    psTraceSetLevel(".c", 5);
+    (void)psTraceSetLevel(".a", 8);
+    (void)psTraceSetLevel(".b", 7);
+    (void)psTraceSetLevel(".c", 5);
 
-    psTraceSetLevel(".a.a", 4);
-    psTraceSetLevel(".a.b", 3);
+    (void)psTraceSetLevel(".a.a", 4);
+    (void)psTraceSetLevel(".a.b", 3);
 
-    psTraceSetLevel(".b.a", 2);
-    psTraceSetLevel(".b.b", 1);
+    (void)psTraceSetLevel(".b.a", 2);
+    (void)psTraceSetLevel(".b.b", 1);
 
-    psTraceSetLevel(".c.a", 0);
-    psTraceSetLevel(".c.b", 3);
-    psTraceSetLevel(".c.c", 5);
+    (void)psTraceSetLevel(".c.a", 0);
+    (void)psTraceSetLevel(".c.b", 3);
+    (void)psTraceSetLevel(".c.c", 5);
 
     psTraceReset();
