Index: /trunk/psLib/test/sysUtils/Makefile
===================================================================
--- /trunk/psLib/test/sysUtils/Makefile	(revision 1693)
+++ /trunk/psLib/test/sysUtils/Makefile	(revision 1694)
@@ -3,6 +3,6 @@
 ##  Makefile:   test/sysUtils
 ##
-##  $Revision: 1.18 $  $Name: not supported by cvs2svn $
-##  $Date: 2004-08-09 20:38:11 $
+##  $Revision: 1.19 $  $Name: not supported by cvs2svn $
+##  $Date: 2004-09-07 19:04:15 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -24,8 +24,5 @@
          tst_psMemory     \
          tst_psError      \
-         tst_psLogMsg00   \
-         tst_psLogMsg01   \
-         tst_psLogMsg02   \
-         tst_psLogMsg03   \
+         tst_psLogMsg     \
          tst_psStringCopy \
          tst_psTrace00    \
Index: unk/psLib/test/sysUtils/tst_psLogMsg00.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psLogMsg00.c	(revision 1693)
+++ 	(revision )
@@ -1,70 +1,0 @@
-/*****************************************************************************
-    This code will test whether trace levels can be set successfully.
-    This code will test whether trace messages can be displayed with printf
-    style string.
- *****************************************************************************/
-#include <stdio.h>
-#include "pslib.h"
-#include "psTest.h"
-
-void myLogMsg(const char *name,
-              int level,
-              const char *fmt,
-              ...)
-{
-    va_list ap;
-
-    // Test whether psLogMsgV() accept a va_list for output variables.
-    va_start(ap, fmt);
-    psLogMsgV(name, level, fmt, ap);
-    va_end(ap);
-}
-
-int main()
-{
-    int i = 0;
-    int testStatus = true;
-    int currentId = psMemGetId();
-
-    printPositiveTestHeader(stdout,
-                            "psLogMsg functions",
-                            "default log levels, printf-style strings");
-
-    // Send a log messages for levels 0:9.  Only the first four messages
-    // should actually be displayed.
-    for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d %f %s\n", i,
-                 (float) i, "beep beep");
-    }
-
-    printFooter(stdout,
-                "psLogMsg functions",
-                "default log levels",
-                testStatus);
-
-
-    // Test whether psLogMsgV() accept a va_list for output variables.
-    printPositiveTestHeader(stdout,
-                            "psLogMsg functions",
-                            "default log levels, psVLogMsg()");
-
-    // Send a log messages for levels 0:9.  Only the first four messages
-    // should actually be displayed.
-    for (i=0;i<10;i++) {
-        myLogMsg(__func__, i, "Hello World!  My level is %d %f %s\n", i,
-                 (float) i, "beep beep");
-    }
-
-    printFooter(stdout,
-                "psLogMsg functions",
-                "default log levels",
-                testStatus);
-
-    if (psMemCheckLeaks(currentId,NULL,NULL) != 0) {
-        psAbort(__func__,"Memory Leaks!");
-    }
-    psMemCheckCorruption(1);
-
-    return(!testStatus);
-}
-
Index: unk/psLib/test/sysUtils/tst_psLogMsg01.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psLogMsg01.c	(revision 1693)
+++ 	(revision )
@@ -1,43 +1,0 @@
-/*****************************************************************************
-    This code tests whether trace levels can be set successfully.
- 
- NOTE: This code must be modified once printFooter() is modified to include
- a parameter that indicates we don't know whether the test passed or failed.
- *****************************************************************************/
-#include <stdio.h>
-#include "pslib.h"
-#include "psTest.h"
-
-int main()
-{
-    int i = 0;
-    int testStatus = true;
-    int currentId = psMemGetId();
-
-    printPositiveTestHeader(stdout,
-                            "psLogMsg functions",
-                            "psLogSetLevel()");
-
-    psLogSetLevel(9);
-    // Send a log messages for levels 0:9.
-    for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
-    }
-
-    psLogSetLevel(5);
-    psLogMsg(__func__, 6, "This should not be displayed (level %d)\n", 6);
-    psLogSetLevel(4);
-    psLogMsg(__func__, 4, "This should  be displayed (level %d)\n", 4);
-
-    printFooter(stdout,
-                "psLogMsg functions",
-                "psLogSetLevel()",
-                testStatus);
-
-    if (psMemCheckLeaks(currentId,NULL,NULL) != 0) {
-        psAbort(__func__,"Memory Leaks!");
-    }
-    psMemCheckCorruption(1);
-
-    return(!testStatus);
-}
Index: unk/psLib/test/sysUtils/tst_psLogMsg02.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psLogMsg02.c	(revision 1693)
+++ 	(revision )
@@ -1,101 +1,0 @@
-/*****************************************************************************
-    This code tests whether the log message format can be set.
- 
- NOTE: This code must be modified once printFooter() is modified to include
- a parameter that indicates we don't know whether the test passed or failed.
- *****************************************************************************/
-#include <stdio.h>
-#include "pslib.h"
-#include "psTest.h"
-
-int main()
-{
-    int i = 0;
-    int testStatus = true;
-    int currentId = psMemGetId();
-
-    printPositiveTestHeader(stdout,
-                            "psLogMsg functions",
-                            "psLogSetFormat()");
-
-
-    fprintf(stderr,"------------- psLogSetFormat() -------------\n");
-    psLogSetFormat("");
-    for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
-    }
-
-    fprintf(stderr,"------------- psLogSetFormat(NULL) -------------\n");
-    psLogSetFormat(NULL);
-    for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
-    }
-
-    fprintf(stderr,"------------- psLogSetFormat(T) -------------\n");
-    psLogSetFormat("T");
-    for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
-    }
-
-    fprintf(stderr,"------------- psLogSetFormat(H) -------------\n");
-    psLogSetFormat("H");
-    for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
-    }
-
-    fprintf(stderr,"------------- psLogSetFormat(L) -------------\n");
-    psLogSetFormat("L");
-    for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
-    }
-
-    fprintf(stderr,"------------- psLogSetFormat(N) -------------\n");
-    psLogSetFormat("N");
-    for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
-    }
-
-    fprintf(stderr,"------------- psLogSetFormat(M) -------------\n");
-    psLogSetFormat("M");
-    for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
-    }
-
-    fprintf(stderr,"------------- psLogSetFormat(THLNM) -------------\n");
-    psLogSetFormat("THLNM");
-    for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
-    }
-
-    printFooter(stdout,
-                "psLogMsg functions",
-                "psLogSetFormat()",
-                testStatus);
-
-
-
-
-    printPositiveTestHeader(stdout,
-                            "psLogMsg functions",
-                            "Output Format");
-
-    psLogMsg("Under 15 chars", 0, "Hello World!\n");
-    psLogMsg("This string is more than 15 chars", 0, "Hello World!\n");
-    psLogMsg(__func__, 0, "Line #1\n");
-    psLogMsg(__func__, 0, "Line #2\n");
-    psLogMsg(__func__, 0, "Line #3");
-    psLogMsg(__func__, 0, "Line #4");
-
-    printFooter(stdout,
-                "psLogMsg functions",
-                "Output Format",
-                testStatus);
-
-
-    if (psMemCheckLeaks(currentId,NULL,NULL) != 0) {
-        psAbort(__func__,"Memory Leaks!");
-    }
-    psMemCheckCorruption(1);
-
-    return(!testStatus);
-}
Index: unk/psLib/test/sysUtils/tst_psLogMsg03.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psLogMsg03.c	(revision 1693)
+++ 	(revision )
@@ -1,72 +1,0 @@
-/*****************************************************************************
-    This code tests whether the log message can be redirected to STDERR or
-    STDOUT.
- 
- NOTE: This code must be modified once printFooter() is modified to include
- a parameter that indicates we don't know whether the test passed or failed.
- *****************************************************************************/
-#include <stdio.h>
-#include "pslib.h"
-#include "psTest.h"
-
-int main()
-{
-    int i = 0;
-    int testStatus = true;
-    int currentId = psMemGetId();
-    FILE* file;
-    char line[256];
-
-    printPositiveTestHeader(stdout,
-                            "psLogMsg functions",
-                            "psLogSetDestination()");
-
-    printf("--------------- psLogSetDestination(PS_LOG_NONE) ----------------\n");
-    psLogSetDestination("none");
-    for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
-    }
-
-    printf("------------- psLogSetDestination(PS_LOG_TO_STDERR) -------------\n");
-    psLogSetDestination("dest:stderr");
-    for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
-    }
-
-    printf("------------- psLogSetDestination(PS_LOG_TO_STDOUT) -------------\n");
-    psLogSetDestination("dest:stdout");
-    for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
-    }
-    printf("--------------- psLogSetDestination(""file:log.txt"") ---------------\n");
-    psLogSetDestination("file:log.txt");
-    for (i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
-    }
-
-    psLogSetDestination("none");
-    printf("--------------------- The Contents of log.txt -------------------\n");
-    file = fopen("log.txt","r");
-    while ( fgets(line,256,file) != NULL ) {
-        printf("%s",line);
-    }
-    fclose(file);
-
-    printf("--------------- psLogSetDestination(""file:/eva/log.txt"") ----------\n");
-    psLogSetDestination("file:/eva/log.txt");
-    for ( i=0;i<10;i++) {
-        psLogMsg(__func__, i, "Hello World! My level is %d\n", i);
-    }
-
-    printFooter(stdout,
-                "psLogMsg functions",
-                "psLogSetDestination()",
-                testStatus);
-
-    if (psMemCheckLeaks(currentId,NULL,NULL) != 0) {
-        psAbort(__func__,"Memory Leaks!");
-    }
-    psMemCheckCorruption(true);
-
-    return(!testStatus);
-}
Index: /trunk/psLib/test/sysUtils/verified/tst_psLogMsg.stderr
===================================================================
--- /trunk/psLib/test/sysUtils/verified/tst_psLogMsg.stderr	(revision 1694)
+++ /trunk/psLib/test/sysUtils/verified/tst_psLogMsg.stderr	(revision 1694)
@@ -0,0 +1,119 @@
+/***************************** TESTPOINT ******************************************\
+*             TestFile: tst_psLogMsg.c                                             *
+*            TestPoint: psLogMsg{default log levels, printf-style strings}         *
+*             TestType: Positive                                                   *
+\**********************************************************************************/
+
+<DATE><TIME>|<HOST>|A|   testLogMsg00|Hello World!  My level is 0 0.000000 beep beep
+<DATE><TIME>|<HOST>|E|   testLogMsg00|Hello World!  My level is 1 1.000000 beep beep
+<DATE><TIME>|<HOST>|W|   testLogMsg00|Hello World!  My level is 2 2.000000 beep beep
+<DATE><TIME>|<HOST>|I|   testLogMsg00|Hello World!  My level is 3 3.000000 beep beep
+
+---> TESTPOINT PASSED (psLogMsg{default log levels, printf-style strings} | tst_psLogMsg.c)
+
+/***************************** TESTPOINT ******************************************\
+*             TestFile: tst_psLogMsg.c                                             *
+*            TestPoint: psLogMsg{default log levels, psVLogMsg()}                  *
+*             TestType: Positive                                                   *
+\**********************************************************************************/
+
+<DATE><TIME>|<HOST>|A|   testLogMsg01|Hello World!  My level is 0 0.000000 beep beep
+<DATE><TIME>|<HOST>|E|   testLogMsg01|Hello World!  My level is 1 1.000000 beep beep
+<DATE><TIME>|<HOST>|W|   testLogMsg01|Hello World!  My level is 2 2.000000 beep beep
+<DATE><TIME>|<HOST>|I|   testLogMsg01|Hello World!  My level is 3 3.000000 beep beep
+
+---> TESTPOINT PASSED (psLogMsg{default log levels, psVLogMsg()} | tst_psLogMsg.c)
+
+/***************************** TESTPOINT ******************************************\
+*             TestFile: tst_psLogMsg.c                                             *
+*            TestPoint: psLogMsg{psLogSetLevel()}                                  *
+*             TestType: Positive                                                   *
+\**********************************************************************************/
+
+<DATE><TIME>|<HOST>|A|   testLogMsg02|Hello World!  My level is 0
+<DATE><TIME>|<HOST>|E|   testLogMsg02|Hello World!  My level is 1
+<DATE><TIME>|<HOST>|W|   testLogMsg02|Hello World!  My level is 2
+<DATE><TIME>|<HOST>|I|   testLogMsg02|Hello World!  My level is 3
+<DATE><TIME>|<HOST>|4|   testLogMsg02|Hello World!  My level is 4
+<DATE><TIME>|<HOST>|5|   testLogMsg02|Hello World!  My level is 5
+<DATE><TIME>|<HOST>|6|   testLogMsg02|Hello World!  My level is 6
+<DATE><TIME>|<HOST>|7|   testLogMsg02|Hello World!  My level is 7
+<DATE><TIME>|<HOST>|8|   testLogMsg02|Hello World!  My level is 8
+<DATE><TIME>|<HOST>|9|   testLogMsg02|Hello World!  My level is 9
+<DATE><TIME>|<HOST>|4|   testLogMsg02|This should  be displayed (level 4)
+
+---> TESTPOINT PASSED (psLogMsg{psLogSetLevel()} | tst_psLogMsg.c)
+
+/***************************** TESTPOINT ******************************************\
+*             TestFile: tst_psLogMsg.c                                             *
+*            TestPoint: psLogMsg{psLogSetFormat()}                                 *
+*             TestType: Positive                                                   *
+\**********************************************************************************/
+
+------------- psLogSetFormat() -------------
+<DATE><TIME>|<HOST>|A|   testLogMsg03|Hello World!  My level is 0
+<DATE><TIME>|<HOST>|E|   testLogMsg03|Hello World!  My level is 1
+<DATE><TIME>|<HOST>|W|   testLogMsg03|Hello World!  My level is 2
+<DATE><TIME>|<HOST>|I|   testLogMsg03|Hello World!  My level is 3
+------------- psLogSetFormat(NULL) -------------
+------------- psLogSetFormat(T) -------------
+<DATE><TIME>|
+<DATE><TIME>|
+<DATE><TIME>|
+<DATE><TIME>|
+------------- psLogSetFormat(H) -------------
+<HOST>|
+<HOST>|
+<HOST>|
+<HOST>|
+------------- psLogSetFormat(L) -------------
+A|
+E|
+W|
+I|
+------------- psLogSetFormat(N) -------------
+   testLogMsg03|
+   testLogMsg03|
+   testLogMsg03|
+   testLogMsg03|
+------------- psLogSetFormat(M) -------------
+Hello World!  My level is 0
+Hello World!  My level is 1
+Hello World!  My level is 2
+Hello World!  My level is 3
+------------- psLogSetFormat(THLNM) -------------
+<DATE><TIME>|<HOST>|A|   testLogMsg03|Hello World!  My level is 0
+<DATE><TIME>|<HOST>|E|   testLogMsg03|Hello World!  My level is 1
+<DATE><TIME>|<HOST>|W|   testLogMsg03|Hello World!  My level is 2
+<DATE><TIME>|<HOST>|I|   testLogMsg03|Hello World!  My level is 3
+
+---> TESTPOINT PASSED (psLogMsg{psLogSetFormat()} | tst_psLogMsg.c)
+
+/***************************** TESTPOINT ******************************************\
+*             TestFile: tst_psLogMsg.c                                             *
+*            TestPoint: psLogMsg{Output Format}                                    *
+*             TestType: Positive                                                   *
+\**********************************************************************************/
+
+<DATE><TIME>|<HOST>|A| Under 15 chars|Hello World!
+<DATE><TIME>|<HOST>|A|This string is |Hello World!
+<DATE><TIME>|<HOST>|A|   testLogMsg04|Line #1
+<DATE><TIME>|<HOST>|A|   testLogMsg04|Line #2
+<DATE><TIME>|<HOST>|A|   testLogMsg04|Line #3
+<DATE><TIME>|<HOST>|A|   testLogMsg04|Line #4
+
+---> TESTPOINT PASSED (psLogMsg{Output Format} | tst_psLogMsg.c)
+
+/***************************** TESTPOINT ******************************************\
+*             TestFile: tst_psLogMsg.c                                             *
+*            TestPoint: psLogMsg{psLogSetDestination()}                            *
+*             TestType: Positive                                                   *
+\**********************************************************************************/
+
+<DATE><TIME>|<HOST>|A|   testLogMsg05|Hello World!  My level is 0
+<DATE><TIME>|<HOST>|E|   testLogMsg05|Hello World!  My level is 1
+<DATE><TIME>|<HOST>|W|   testLogMsg05|Hello World!  My level is 2
+<DATE><TIME>|<HOST>|I|   testLogMsg05|Hello World!  My level is 3
+
+---> TESTPOINT PASSED (psLogMsg{psLogSetDestination()} | tst_psLogMsg.c)
+
Index: /trunk/psLib/test/sysUtils/verified/tst_psLogMsg.stdout
===================================================================
--- /trunk/psLib/test/sysUtils/verified/tst_psLogMsg.stdout	(revision 1694)
+++ /trunk/psLib/test/sysUtils/verified/tst_psLogMsg.stdout	(revision 1694)
@@ -0,0 +1,14 @@
+--------------- psLogSetDestination(PS_LOG_NONE) ----------------
+------------- psLogSetDestination(PS_LOG_TO_STDERR) -------------
+------------- psLogSetDestination(PS_LOG_TO_STDOUT) -------------
+<DATE><TIME>|<HOST>|A|   testLogMsg05|Hello World!  My level is 0
+<DATE><TIME>|<HOST>|E|   testLogMsg05|Hello World!  My level is 1
+<DATE><TIME>|<HOST>|W|   testLogMsg05|Hello World!  My level is 2
+<DATE><TIME>|<HOST>|I|   testLogMsg05|Hello World!  My level is 3
+--------------- psLogSetDestination(file:log.txt) ---------------
+--------------------- The Contents of log.txt -------------------
+<DATE><TIME>|<HOST>|A|   testLogMsg05|Hello World!  My level is 0
+<DATE><TIME>|<HOST>|E|   testLogMsg05|Hello World!  My level is 1
+<DATE><TIME>|<HOST>|W|   testLogMsg05|Hello World!  My level is 2
+<DATE><TIME>|<HOST>|I|   testLogMsg05|Hello World!  My level is 3
+--------------- psLogSetDestination(file:/eva/log.txt) ----------
Index: unk/psLib/test/sysUtils/verified/tst_psLogMsg00.stderr
===================================================================
--- /trunk/psLib/test/sysUtils/verified/tst_psLogMsg00.stderr	(revision 1693)
+++ 	(revision )
@@ -1,8 +1,0 @@
-<DATE><TIME>|<HOST>|A|           main|Hello World!  My level is 0 0.000000 beep beep
-<DATE><TIME>|<HOST>|E|           main|Hello World!  My level is 1 1.000000 beep beep
-<DATE><TIME>|<HOST>|W|           main|Hello World!  My level is 2 2.000000 beep beep
-<DATE><TIME>|<HOST>|I|           main|Hello World!  My level is 3 3.000000 beep beep
-<DATE><TIME>|<HOST>|A|           main|Hello World!  My level is 0 0.000000 beep beep
-<DATE><TIME>|<HOST>|E|           main|Hello World!  My level is 1 1.000000 beep beep
-<DATE><TIME>|<HOST>|W|           main|Hello World!  My level is 2 2.000000 beep beep
-<DATE><TIME>|<HOST>|I|           main|Hello World!  My level is 3 3.000000 beep beep
Index: unk/psLib/test/sysUtils/verified/tst_psLogMsg00.stdout
===================================================================
--- /trunk/psLib/test/sysUtils/verified/tst_psLogMsg00.stdout	(revision 1693)
+++ 	(revision )
@@ -1,18 +1,0 @@
-/***************************** TESTPOINT ******************************************\
-*             TestFile: tst_psLogMsg00.c                                           *
-*            TestPoint: psLogMsg functions{default log levels, printf-style strings} *
-*             TestType: Positive                                                   *
-\**********************************************************************************/
-
-
----> TESTPOINT PASSED (psLogMsg functions{default log levels} | tst_psLogMsg00.c)
-
-/***************************** TESTPOINT ******************************************\
-*             TestFile: tst_psLogMsg00.c                                           *
-*            TestPoint: psLogMsg functions{default log levels, psVLogMsg()}        *
-*             TestType: Positive                                                   *
-\**********************************************************************************/
-
-
----> TESTPOINT PASSED (psLogMsg functions{default log levels} | tst_psLogMsg00.c)
-
Index: unk/psLib/test/sysUtils/verified/tst_psLogMsg01.stderr
===================================================================
--- /trunk/psLib/test/sysUtils/verified/tst_psLogMsg01.stderr	(revision 1693)
+++ 	(revision )
@@ -1,11 +1,0 @@
-<DATE><TIME>|<HOST>|A|           main|Hello World!  My level is 0
-<DATE><TIME>|<HOST>|E|           main|Hello World!  My level is 1
-<DATE><TIME>|<HOST>|W|           main|Hello World!  My level is 2
-<DATE><TIME>|<HOST>|I|           main|Hello World!  My level is 3
-<DATE><TIME>|<HOST>|4|           main|Hello World!  My level is 4
-<DATE><TIME>|<HOST>|5|           main|Hello World!  My level is 5
-<DATE><TIME>|<HOST>|6|           main|Hello World!  My level is 6
-<DATE><TIME>|<HOST>|7|           main|Hello World!  My level is 7
-<DATE><TIME>|<HOST>|8|           main|Hello World!  My level is 8
-<DATE><TIME>|<HOST>|9|           main|Hello World!  My level is 9
-<DATE><TIME>|<HOST>|4|           main|This should  be displayed (level 4)
Index: unk/psLib/test/sysUtils/verified/tst_psLogMsg01.stdout
===================================================================
--- /trunk/psLib/test/sysUtils/verified/tst_psLogMsg01.stdout	(revision 1693)
+++ 	(revision )
@@ -1,9 +1,0 @@
-/***************************** TESTPOINT ******************************************\
-*             TestFile: tst_psLogMsg01.c                                           *
-*            TestPoint: psLogMsg functions{psLogSetLevel()}                        *
-*             TestType: Positive                                                   *
-\**********************************************************************************/
-
-
----> TESTPOINT PASSED (psLogMsg functions{psLogSetLevel()} | tst_psLogMsg01.c)
-
Index: unk/psLib/test/sysUtils/verified/tst_psLogMsg02.stderr
===================================================================
--- /trunk/psLib/test/sysUtils/verified/tst_psLogMsg02.stderr	(revision 1693)
+++ 	(revision )
@@ -1,42 +1,0 @@
-------------- psLogSetFormat() -------------
-<DATE><TIME>|<HOST>|A|           main|Hello World!  My level is 0
-<DATE><TIME>|<HOST>|E|           main|Hello World!  My level is 1
-<DATE><TIME>|<HOST>|W|           main|Hello World!  My level is 2
-<DATE><TIME>|<HOST>|I|           main|Hello World!  My level is 3
-------------- psLogSetFormat(NULL) -------------
-------------- psLogSetFormat(T) -------------
-<DATE><TIME>|
-<DATE><TIME>|
-<DATE><TIME>|
-<DATE><TIME>|
-------------- psLogSetFormat(H) -------------
-<HOST>|
-<HOST>|
-<HOST>|
-<HOST>|
-------------- psLogSetFormat(L) -------------
-A|
-E|
-W|
-I|
-------------- psLogSetFormat(N) -------------
-           main|
-           main|
-           main|
-           main|
-------------- psLogSetFormat(M) -------------
-Hello World!  My level is 0
-Hello World!  My level is 1
-Hello World!  My level is 2
-Hello World!  My level is 3
-------------- psLogSetFormat(THLNM) -------------
-<DATE><TIME>|<HOST>|A|           main|Hello World!  My level is 0
-<DATE><TIME>|<HOST>|E|           main|Hello World!  My level is 1
-<DATE><TIME>|<HOST>|W|           main|Hello World!  My level is 2
-<DATE><TIME>|<HOST>|I|           main|Hello World!  My level is 3
-<DATE><TIME>|<HOST>|A| Under 15 chars|Hello World!
-<DATE><TIME>|<HOST>|A|This string is |Hello World!
-<DATE><TIME>|<HOST>|A|           main|Line #1
-<DATE><TIME>|<HOST>|A|           main|Line #2
-<DATE><TIME>|<HOST>|A|           main|Line #3
-<DATE><TIME>|<HOST>|A|           main|Line #4
Index: unk/psLib/test/sysUtils/verified/tst_psLogMsg03.stderr
===================================================================
--- /trunk/psLib/test/sysUtils/verified/tst_psLogMsg03.stderr	(revision 1693)
+++ 	(revision )
@@ -1,4 +1,0 @@
-<DATE><TIME>|<HOST>|A|           main|Hello World!  My level is 0
-<DATE><TIME>|<HOST>|E|           main|Hello World!  My level is 1
-<DATE><TIME>|<HOST>|W|           main|Hello World!  My level is 2
-<DATE><TIME>|<HOST>|I|           main|Hello World!  My level is 3
Index: unk/psLib/test/sysUtils/verified/tst_psLogMsg03.stdout
===================================================================
--- /trunk/psLib/test/sysUtils/verified/tst_psLogMsg03.stdout	(revision 1693)
+++ 	(revision )
@@ -1,23 +1,0 @@
-/***************************** TESTPOINT ******************************************\
-*             TestFile: tst_psLogMsg03.c                                           *
-*            TestPoint: psLogMsg functions{psLogSetDestination()}                  *
-*             TestType: Positive                                                   *
-\**********************************************************************************/
-
---------------- psLogSetDestination(PS_LOG_NONE) ----------------
-------------- psLogSetDestination(PS_LOG_TO_STDERR) -------------
-------------- psLogSetDestination(PS_LOG_TO_STDOUT) -------------
-<DATE><TIME>|<HOST>|A|           main|Hello World!  My level is 0
-<DATE><TIME>|<HOST>|E|           main|Hello World!  My level is 1
-<DATE><TIME>|<HOST>|W|           main|Hello World!  My level is 2
-<DATE><TIME>|<HOST>|I|           main|Hello World!  My level is 3
---------------- psLogSetDestination(file:log.txt) ---------------
---------------------- The Contents of log.txt -------------------
-<DATE><TIME>|<HOST>|A|           main|Hello World!  My level is 0
-<DATE><TIME>|<HOST>|E|           main|Hello World!  My level is 1
-<DATE><TIME>|<HOST>|W|           main|Hello World!  My level is 2
-<DATE><TIME>|<HOST>|I|           main|Hello World!  My level is 3
---------------- psLogSetDestination(file:/eva/log.txt) ----------
-
----> TESTPOINT PASSED (psLogMsg functions{psLogSetDestination()} | tst_psLogMsg03.c)
-
Index: /trunk/psLib/test/sysUtils/verified/tst_psMemory.stderr
===================================================================
--- /trunk/psLib/test/sysUtils/verified/tst_psMemory.stderr	(revision 1693)
+++ /trunk/psLib/test/sysUtils/verified/tst_psMemory.stderr	(revision 1694)
@@ -91,5 +91,5 @@
 <DATE><TIME>|<HOST>|I|TPmemCorruption|psMemCheckCorruption shall detect memory corruptions
 <DATE><TIME>|<HOST>|I|TPmemCorruption|psMemCheckCorruption should output an error message and memProblemCallback callback should be called.
-<DATE><TIME>|<HOST>|E|psMemCheckCorru|Memory Corruption: memory block 1 is corrupted (buffer underflow)
+<DATE><TIME>|<HOST>|E|psLib.sysUtils.|Memory block 1 is corrupted; buffer underflow detected.
 <DATE><TIME>|<HOST>|I|memProblemCallb|memory callback called for id 1 (psMemCheckCorruption:<LINENO>).
 
@@ -114,6 +114,6 @@
 
 <DATE><TIME>|<HOST>|I| TPmultipleFree|Next should be an error about multiple freeing.
-<DATE><TIME>|<HOST>|E|  checkMemBlock|Memory Corruption: memory block 1 was freed but still used.
-<DATE><TIME>|<HOST>|E|memProblemCallb|Block 1 allocated at tst_psMemory.c:<LINENO> freed more than once at tst_psMemory.c:<LINENO>
+<DATE><TIME>|<HOST>|E|psLib.sysUtils.|Memory block 1 was freed but still used.
+<DATE><TIME>|<HOST>|E|psLib.sysUtils.|Block 1 allocated at tst_psMemory.c:<LINENO> freed more than once at tst_psMemory.c:<LINENO>
 <DATE><TIME>|<HOST>|A|memProblemCallb|Detected a problem in the memory system at tst_psMemory.c:<LINENO>
 
