Index: trunk/psLib/test/sys/tst_psLogMsg.c
===================================================================
--- trunk/psLib/test/sys/tst_psLogMsg.c	(revision 5072)
+++ trunk/psLib/test/sys/tst_psLogMsg.c	(revision 7587)
@@ -234,6 +234,6 @@
     close(fd);
 
-    int fd2 = creat("/eva/log.txt", 0666);
-    printf("--------------- psLogSetDestination(""file:/eva/log.txt"") ----------\n");
+    int fd2 = creat("eva/log.txt", 0666);
+    printf("--------------- psLogSetDestination(""file:eva/log.txt"") ----------\n");
     //    psLogSetDestination("file:/eva/log.txt");
     psLogSetDestination(fd2);
@@ -261,15 +261,15 @@
 
     printf("------------- psMessageDestination(PS_LOG_TO_STDERR) -------------\n");
-    psMessageDestination("dest:stderr");
+    psMessageDestination("stderr");
     //    psLogSetDestination(2);
     for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
+        psLogMsg(__func__, i, "Hello World!  My level is %d - stderr\n", i);
     }
 
     printf("------------- psMessageDestination(PS_LOG_TO_STDOUT) -------------\n");
-    psMessageDestination("dest:stdout");
+    psMessageDestination("stdout");
     //    psLogSetDestination(1);
     for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
+        psLogMsg(__func__, i, "Hello World!  My level is %d - stdout\n", i);
     }
 
@@ -296,7 +296,7 @@
     close(fd);
 
-    int fd2 = creat("/eva/log2.txt", 0666);
-    printf("--------------- psMessageDestination(""file:/eva/log.txt"") ----------\n");
-    psMessageDestination("file:/eva/log2.txt");
+    int fd2 = creat("eva/log2.txt", 0666);
+    printf("--------------- psMessageDestination(""file:eva/log.txt"") ----------\n");
+    psMessageDestination("file:eva/log2.txt");
     //    psLogSetDestination(fd2);
     for ( i=0;i<10;i++) {
