IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 883


Ignore:
Timestamp:
Jun 4, 2004, 2:50:35 PM (22 years ago)
Author:
gusciora
Message:

...

Location:
trunk/psLib/test/sysUtils
Files:
5 edited

Legend:

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

    r584 r883  
    11/*****************************************************************************
    2     This code tests whether trace levels can be set successfully.
     2    This code will test whether trace levels can be set successfully.
    33 *****************************************************************************/
    44#include <stdio.h>
  • trunk/psLib/test/sysUtils/tst_psTrace01.c

    r584 r883  
    11/*****************************************************************************
    2     This code tests whether trace levels can be reset successfully.
     2    This code will test whether trace levels can be reset successfully.
    33 *****************************************************************************/
    44#include <stdio.h>
  • trunk/psLib/test/sysUtils/tst_psTrace02.c

    r584 r883  
    11/*****************************************************************************
    2     This code tests whether trace messages can be successfully displayed
     2    This code will test whether trace messages can be successfully displayed
    33    and not displayed.
     4 
     5    NOTE: We must verify the output for the tst_psTrace02_OUT somewhere.
    46 *****************************************************************************/
    57#include <stdio.h>
     
    911int main()
    1012{
     13    FILE *fp;
     14
    1115    printPositiveTestHeader(stdout,
    1216                            "psTrace functions",
     
    4044                true);
    4145
     46
     47    fp = fopen("tst_psTrace02_OUT", "w");
     48    psTraceSetDestination(fp);
     49    psTrace(".", 5, "(0) This message should be displayed (%x)\n",
     50            0xbeefface);
     51    fclose(fp);
     52
    4253    return(0);
    4354}
  • trunk/psLib/test/sysUtils/tst_psTrace03.c

    r584 r883  
    11/*****************************************************************************
    2     This code tests whether trace messages can be printed successfully
     2    This code will test whether trace messages can be printed successfully
    33    with psPrintTraceLevels().
    44 *****************************************************************************/
  • trunk/psLib/test/sysUtils/tst_psTrace04.c

    r584 r883  
    11/*****************************************************************************
    2     This code tests whether trace messages can be printed successfully
     2    This code will test whether trace messages can be printed successfully
    33    with psPrintTraceLevels().
    44 *****************************************************************************/
Note: See TracChangeset for help on using the changeset viewer.