Changeset 852
- Timestamp:
- Jun 3, 2004, 4:29:12 PM (22 years ago)
- Location:
- trunk/psLib/test
- Files:
-
- 5 edited
-
runTest (modified) (2 diffs)
-
sysUtils/tst_psLogMsg00.c (modified) (2 diffs)
-
sysUtils/tst_psLogMsg01.c (modified) (2 diffs)
-
sysUtils/tst_psLogMsg02.c (modified) (2 diffs)
-
sysUtils/tst_psLogMsg03.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/runTest
r731 r852 30 30 # 31 31 # $Revison: $ $Name: not supported by cvs2svn $ 32 # $Date: 2004-0 5-19 01:57:05$32 # $Date: 2004-06-04 02:29:12 $ 33 33 # 34 34 # Copyright 2004 Maui High Performance Computering Center, University of Hawaii … … 131 131 s/\d+:\d+:\d+/ <DATE> /; 132 132 s/\s+\d+:\d+:\d+\w/ <TIME> /; 133 s/\| [\w\.\-\_]+\|/<HOST> |/;133 s/\|\s*[\w\.\-\_]+\s*\|/| <HOST> |/; 134 134 # Filter lines with malloc. This is an artifact of memory testing 135 135 # with the Mac testbed -
trunk/psLib/test/sysUtils/tst_psLogMsg00.c
r847 r852 25 25 int i = 0; 26 26 int testStatus = true; 27 int currentId = psMemGetId(); 27 28 28 29 printPositiveTestHeader(stdout, … … 57 58 "default log levels", 58 59 testStatus); 60 61 if (psMemCheckLeaks(currentId,NULL,NULL) != 0) { 62 psAbort(__func__,"Memory Leaks!"); 63 } 64 psMemCheckCorruption(1); 65 59 66 return(!testStatus); 60 61 62 67 } 63 68 -
trunk/psLib/test/sysUtils/tst_psLogMsg01.c
r584 r852 13 13 int i = 0; 14 14 int testStatus = true; 15 int currentId = psMemGetId(); 15 16 16 17 printPositiveTestHeader(stdout, … … 33 34 "psSetLogLevel()", 34 35 testStatus); 36 37 if (psMemCheckLeaks(currentId,NULL,NULL) != 0) { 38 psAbort(__func__,"Memory Leaks!"); 39 } 40 psMemCheckCorruption(1); 41 35 42 return(!testStatus); 36 43 } -
trunk/psLib/test/sysUtils/tst_psLogMsg02.c
r598 r852 13 13 int i = 0; 14 14 int testStatus = true; 15 int currentId = psMemGetId(); 15 16 16 17 printPositiveTestHeader(stdout, … … 65 66 "psSetLogFormat()", 66 67 testStatus); 68 69 if (psMemCheckLeaks(currentId,NULL,NULL) != 0) { 70 psAbort(__func__,"Memory Leaks!"); 71 } 72 psMemCheckCorruption(1); 73 67 74 return(!testStatus); 68 75 } -
trunk/psLib/test/sysUtils/tst_psLogMsg03.c
r832 r852 14 14 int i = 0; 15 15 int testStatus = true; 16 int currentId = psMemGetId(); 16 17 17 18 printPositiveTestHeader(stdout, … … 41 42 "psSetLogDestination()", 42 43 testStatus); 44 45 if (psMemCheckLeaks(currentId,NULL,NULL) != 0) { 46 psAbort(__func__,"Memory Leaks!"); 47 } 48 psMemCheckCorruption(1); 49 43 50 return(!testStatus); 44 51 }
Note:
See TracChangeset
for help on using the changeset viewer.
