Index: trunk/psLib/test/sysUtils/tst_psTrace01.c
===================================================================
--- trunk/psLib/test/sysUtils/tst_psTrace01.c	(revision 905)
+++ 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(".")) ||
