Index: trunk/psLib/test/sysUtils/tst_psTrace02.c
===================================================================
--- trunk/psLib/test/sysUtils/tst_psTrace02.c	(revision 584)
+++ 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);
 }
