Changeset 905 for trunk/psLib/test/sysUtils/tst_psTrace03.c
- Timestamp:
- Jun 7, 2004, 3:26:25 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/test/sysUtils/tst_psTrace03.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/sysUtils/tst_psTrace03.c
r883 r905 1 1 /***************************************************************************** 2 2 This code will test whether trace messages can be printed successfully 3 with ps PrintTraceLevels().3 with psTracePrintLevels(). 4 4 *****************************************************************************/ 5 5 #include <stdio.h> … … 13 13 "psTracePrintLevels()"); 14 14 15 ps SetTraceLevel(".", 9);15 psTraceSetLevel(".", 9); 16 16 17 ps SetTraceLevel(".a", 8);18 ps SetTraceLevel(".b", 7);19 ps SetTraceLevel(".c", 5);17 psTraceSetLevel(".a", 8); 18 psTraceSetLevel(".b", 7); 19 psTraceSetLevel(".c", 5); 20 20 21 ps SetTraceLevel(".a.a", 4);22 ps SetTraceLevel(".a.b", 3);21 psTraceSetLevel(".a.a", 4); 22 psTraceSetLevel(".a.b", 3); 23 23 24 ps SetTraceLevel(".b.a", 2);25 ps SetTraceLevel(".b.b", 1);24 psTraceSetLevel(".b.a", 2); 25 psTraceSetLevel(".b.b", 1); 26 26 27 ps SetTraceLevel(".c.a", 0);28 ps SetTraceLevel(".c.b", 3);29 ps SetTraceLevel(".c.c", 5);27 psTraceSetLevel(".c.a", 0); 28 psTraceSetLevel(".c.b", 3); 29 psTraceSetLevel(".c.c", 5); 30 30 31 ps PrintTraceLevels();31 psTracePrintLevels(); 32 32 33 33 printFooter(stdout,
Note:
See TracChangeset
for help on using the changeset viewer.
