IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 26, 2004, 2:57:34 PM (22 years ago)
Author:
desonia
Message:

converted native C types to ps Types, where practical.

File:
1 edited

Legend:

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

    r2202 r2204  
    1010
    1111
    12 static int testTrace00(void);
    13 static int testTrace01(void);
    14 static int testTrace02(void);
    15 static int testTrace03(void);
    16 static int testTrace04(void);
    17 static int testTrace05(void);
    18 static int testTrace05a(void);
    19 static int testTrace06(void);
    20 static int testTrace08(void);
     12static psS32 testTrace00(void);
     13static psS32 testTrace01(void);
     14static psS32 testTrace02(void);
     15static psS32 testTrace03(void);
     16static psS32 testTrace04(void);
     17static psS32 testTrace05(void);
     18static psS32 testTrace05a(void);
     19static psS32 testTrace06(void);
     20static psS32 testTrace08(void);
    2121
    2222testDescription tests[] = {
     
    3737                           };
    3838
    39 int main( int argc, char* argv[] )
     39psS32 main( psS32 argc, char* argv[] )
    4040{
    4141    psLogSetLevel( PS_LOG_INFO );
     
    4444}
    4545
    46 static int testTrace00(void)
    47 {
    48     int i;
    49     int lev = 0;
     46static psS32 testTrace00(void)
     47{
     48    psS32 i;
     49    psS32 lev = 0;
    5050
    5151    psTraceSetDestination(stderr);
     
    9494}
    9595
    96 static int testTrace01(void)
     96static psS32 testTrace01(void)
    9797{
    9898    psTraceSetDestination(stderr);
     
    104104}
    105105
    106 static int testTrace02(void)
     106static psS32 testTrace02(void)
    107107{
    108108    psTraceReset();
     
    133133}
    134134
    135 static int testTrace03(void)
    136 {
    137     int i = 0;
    138     int lev = 0;
     135static psS32 testTrace03(void)
     136{
     137    psS32 i = 0;
     138    psS32 lev = 0;
    139139
    140140    psTraceSetDestination(stderr);
     
    176176
    177177
    178 static int testTrace04(void)
     178static psS32 testTrace04(void)
    179179{
    180180    FILE *fp;
    181     int nb = 0;
     181    psS32 nb = 0;
    182182
    183183    fp = fopen("tst_psTrace02_OUT", "w");
     
    221221}
    222222
    223 static int testTrace05(void)
     223static psS32 testTrace05(void)
    224224{
    225225    psTraceSetDestination(stderr);
     
    247247}
    248248
    249 static int testTrace05a(void)
     249static psS32 testTrace05a(void)
    250250{
    251251    (void)psTraceSetLevel(".", 9);
     
    271271}
    272272
    273 static int testTrace06(void)
     273static psS32 testTrace06(void)
    274274{
    275275    psTraceSetDestination(stderr);
     
    311311
    312312// Ensure that the leading dot in the component names are optional.
    313 static int testTrace08(void)
     313static psS32 testTrace08(void)
    314314{
    315315    psTraceReset();
Note: See TracChangeset for help on using the changeset viewer.