Index: /trunk/psLib/test/sysUtils/tst_psTrace00.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psTrace00.c	(revision 882)
+++ /trunk/psLib/test/sysUtils/tst_psTrace00.c	(revision 883)
@@ -1,4 +1,4 @@
 /*****************************************************************************
-    This code tests whether trace levels can be set successfully.
+    This code will test whether trace levels can be set successfully.
  *****************************************************************************/
 #include <stdio.h>
Index: /trunk/psLib/test/sysUtils/tst_psTrace01.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psTrace01.c	(revision 882)
+++ /trunk/psLib/test/sysUtils/tst_psTrace01.c	(revision 883)
@@ -1,4 +1,4 @@
 /*****************************************************************************
-    This code tests whether trace levels can be reset successfully.
+    This code will test whether trace levels can be reset successfully.
  *****************************************************************************/
 #include <stdio.h>
Index: /trunk/psLib/test/sysUtils/tst_psTrace02.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psTrace02.c	(revision 882)
+++ /trunk/psLib/test/sysUtils/tst_psTrace02.c	(revision 883)
@@ -1,5 +1,7 @@
 /*****************************************************************************
-    This code tests whether trace messages can be successfully displayed
+    This code will test whether trace messages can be successfully displayed
     and not displayed.
+ 
+    NOTE: We must verify the output for the tst_psTrace02_OUT somewhere.
  *****************************************************************************/
 #include <stdio.h>
@@ -9,4 +11,6 @@
 int main()
 {
+    FILE *fp;
+
     printPositiveTestHeader(stdout,
                             "psTrace functions",
@@ -40,4 +44,11 @@
                 true);
 
+
+    fp = fopen("tst_psTrace02_OUT", "w");
+    psTraceSetDestination(fp);
+    psTrace(".", 5, "(0) This message should be displayed (%x)\n",
+            0xbeefface);
+    fclose(fp);
+
     return(0);
 }
Index: /trunk/psLib/test/sysUtils/tst_psTrace03.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psTrace03.c	(revision 882)
+++ /trunk/psLib/test/sysUtils/tst_psTrace03.c	(revision 883)
@@ -1,4 +1,4 @@
 /*****************************************************************************
-    This code tests whether trace messages can be printed successfully
+    This code will test whether trace messages can be printed successfully
     with psPrintTraceLevels().
  *****************************************************************************/
Index: /trunk/psLib/test/sysUtils/tst_psTrace04.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psTrace04.c	(revision 882)
+++ /trunk/psLib/test/sysUtils/tst_psTrace04.c	(revision 883)
@@ -1,4 +1,4 @@
 /*****************************************************************************
-    This code tests whether trace messages can be printed successfully
+    This code will test whether trace messages can be printed successfully
     with psPrintTraceLevels().
  *****************************************************************************/
