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_psTrace04.c

    r905 r1136  
    1212                            "psTrace functions",
    1313                            "Testing psTraceReset()");
    14     psTraceSetLevel(".", 9);
     14    (void)psTraceSetLevel(".", 9);
    1515
    16     psTraceSetLevel(".a", 8);
    17     psTraceSetLevel(".b", 7);
    18     psTraceSetLevel(".c", 5);
     16    (void)psTraceSetLevel(".a", 8);
     17    (void)psTraceSetLevel(".b", 7);
     18    (void)psTraceSetLevel(".c", 5);
    1919
    20     psTraceSetLevel(".a.a", 4);
    21     psTraceSetLevel(".a.b", 3);
     20    (void)psTraceSetLevel(".a.a", 4);
     21    (void)psTraceSetLevel(".a.b", 3);
    2222
    23     psTraceSetLevel(".b.a", 2);
    24     psTraceSetLevel(".b.b", 1);
     23    (void)psTraceSetLevel(".b.a", 2);
     24    (void)psTraceSetLevel(".b.b", 1);
    2525
    26     psTraceSetLevel(".c.a", 0);
    27     psTraceSetLevel(".c.b", 3);
    28     psTraceSetLevel(".c.c", 5);
     26    (void)psTraceSetLevel(".c.a", 0);
     27    (void)psTraceSetLevel(".c.b", 3);
     28    (void)psTraceSetLevel(".c.c", 5);
    2929
    3030    psTraceReset();
Note: See TracChangeset for help on using the changeset viewer.