IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 29, 2004, 3:05:37 PM (22 years ago)
Author:
desonia
Message:

fixed trace tests to compile but fail if psLib was compiled with PS_NO_TRACE set.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/sysUtils/tst_psTrace03.c

    r905 r1136  
    1313                            "psTracePrintLevels()");
    1414
    15     psTraceSetLevel(".", 9);
     15    (void)psTraceSetLevel(".", 9);
    1616
    17     psTraceSetLevel(".a", 8);
    18     psTraceSetLevel(".b", 7);
    19     psTraceSetLevel(".c", 5);
     17    (void)psTraceSetLevel(".a", 8);
     18    (void)psTraceSetLevel(".b", 7);
     19    (void)psTraceSetLevel(".c", 5);
    2020
    21     psTraceSetLevel(".a.a", 4);
    22     psTraceSetLevel(".a.b", 3);
     21    (void)psTraceSetLevel(".a.a", 4);
     22    (void)psTraceSetLevel(".a.b", 3);
    2323
    24     psTraceSetLevel(".b.a", 2);
    25     psTraceSetLevel(".b.b", 1);
     24    (void)psTraceSetLevel(".b.a", 2);
     25    (void)psTraceSetLevel(".b.b", 1);
    2626
    27     psTraceSetLevel(".c.a", 0);
    28     psTraceSetLevel(".c.b", 3);
    29     psTraceSetLevel(".c.c", 5);
     27    (void)psTraceSetLevel(".c.a", 0);
     28    (void)psTraceSetLevel(".c.b", 3);
     29    (void)psTraceSetLevel(".c.c", 5);
    3030
    3131    psTracePrintLevels();
Note: See TracChangeset for help on using the changeset viewer.