IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 12513 for trunk/psLib/test/sys


Ignore:
Timestamp:
Mar 19, 2007, 5:57:25 PM (19 years ago)
Author:
jhoblitt
Message:

disable unnecessary diag() calls

Location:
trunk/psLib/test/sys
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/sys/tap_psError.c

    r11662 r12513  
    1313 *  @author  Eric Van Alst, MHPCC
    1414 *
    15  *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
    16  *  @date  $Date: 2007-02-06 04:09:55 $
     15 *  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
     16 *  @date  $Date: 2007-03-20 03:57:25 $
    1717 *
    1818 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    4343static psS32 testError00(void)
    4444{
    45     diag("testError00");
     45//    diag("testError00");
    4646
    4747    psS32  intval=1;
     
    6868static psS32 testError01(void)
    6969{
    70     diag("testError01");
     70//    diag("testError01");
    7171
    7272    psErrorCode code=PS_ERR_BAD_PARAMETER_VALUE;
     
    120120static psS32 testError02(void)
    121121{
    122     diag("testError02");
     122//    diag("testError02");
    123123
    124124    psErrorCode code = PS_ERR_BAD_PARAMETER_VALUE;
     
    136136static psS32 testError03(void)
    137137{
    138     diag("testError03");
     138//    diag("testError03");
    139139
    140140    psErrorCode code = PS_ERR_BAD_PARAMETER_VALUE;
     
    235235static psS32 testError04(void)
    236236{
    237     diag("testError04");
     237    //diag("testError04");
    238238
    239239    psErrorCode code = PS_ERR_BAD_PARAMETER_VALUE;
     
    296296static psS32 testError05(void)
    297297{
    298     diag("testError05");
     298    //diag("testError05");
    299299
    300300    // Verify the return value of psErrorCodeString
     
    311311static psS32 testErrorRegister(void)
    312312{
    313     diag("testErrorRegister");
     313    //diag("testErrorRegister");
    314314
    315315    psS32 numErr = 4;
  • trunk/psLib/test/sys/tap_psMemory.c

    r12507 r12513  
    66*  @author Robert DeSonia, MHPCC
    77*
    8 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    9 *  @date $Date: 2007-03-20 02:35:53 $
     8*  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     9*  @date $Date: 2007-03-20 03:57:25 $
    1010*
    1111*  XXXX: Several tests fail with an Abort and are commented out.
     
    9292void TPCheckBufferPositive( void )
    9393{
    94     diag("TPCheckBufferPositive");
     94//    diag("TPCheckBufferPositive");
    9595
    9696    psS32 * mem;
     
    117117void TPFreeReferencedMemory( void )
    118118{
    119     diag("TPFreeReferencedMemory");
     119    // diag("TPFreeReferencedMemory");
    120120
    121121    // create memory
     
    160160void TPReallocOutOfMemory( void )
    161161{
    162     diag("TPReallocOutOfMemory");
     162    // diag("TPReallocOutOfMemory");
    163163
    164164    psS32 * mem[ 100 ];
     
    196196void TPOutOfMemory( void )
    197197{
    198     diag("TPOutOfMemory");
     198    // diag("TPOutOfMemory");
    199199
    200200    psS32 * mem[ 100 ];
     
    230230void TPrealloc( void )
    231231{
    232     diag("TPrealloc");
     232    // diag("TPrealloc");
    233233
    234234    psS32 * mem1;
     
    287287void TPallocCallback( void )
    288288{
    289     diag("TPallocCallback");
     289    // diag("TPallocCallback");
    290290
    291291    psS32 * mem1;
  • trunk/psLib/test/sys/tap_psString.c

    r12512 r12513  
    2020 *  @author  Eric Van Alst, MHPCC
    2121 *
    22  *  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
    23  *  @date  $Date: 2007-03-20 03:31:39 $
     22 *  @version $Revision: 1.6 $  $Name: not supported by cvs2svn $
     23 *  @date  $Date: 2007-03-20 03:57:25 $
    2424 *
    2525 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    8787psS32 testStringCopy00(void)
    8888{
    89     diag("testStringCopy00");
     89//    diag("testStringCopy00");
    9090
    9191    char  stringval[20] = "E R R O R";
     
    114114psS32 testStringCopy01(void)
    115115{
    116     diag("testStringCopy01");
     116//    diag("testStringCopy01");
    117117
    118118    char  *emptyval = "";
     
    136136psS32 testStringCopy02(void)
    137137{
    138     diag("testStringCopy02");
     138//    diag("testStringCopy02");
    139139
    140140    psS32   result = 0;
     
    163163psS32 testStringCopy03(void)
    164164{
    165     diag("testStringCopy03");
     165//    diag("testStringCopy03");
    166166
    167167    psS32   result = 0;
     
    186186psS32 testStringCopy04(void)
    187187{
    188     diag("testStringCopy04");
     188//    diag("testStringCopy04");
    189189
    190190    psS32   result = 0;
     
    233233psS32 testStringCopy06(void)
    234234{
    235     diag("testStringCopy06");
     235//    diag("testStringCopy06");
    236236
    237237    char  *strResult;
     
    252252psS32 testStrAppend00(void)
    253253{
    254     diag("testStrAppend00");
     254//    diag("testStrAppend00");
    255255
    256256    char *str=NULL;
     
    272272psS32 testStrAppend01(void)
    273273{
    274     diag("testStrAppend01");
     274//    diag("testStrAppend01");
    275275
    276276    ssize_t sz;
     
    290290psS32 testStrAppend02(void)
    291291{
    292     diag("testStrAppend02");
     292//    diag("testStrAppend02");
    293293
    294294    char *str=NULL;
     
    307307psS32 testStrAppend03(void)
    308308{
    309     diag("testStrAppend03");
     309//    diag("testStrAppend03");
    310310
    311311    char *str =psStringCopy(STR_0);
     
    322322psS32 testStrPrepend00(void)
    323323{
    324     diag("testStrPrepend00");
     324//    diag("testStrPrepend00");
    325325
    326326    char *str=NULL;
     
    343343psS32 testStrPrepend01(void)
    344344{
    345     diag("testStrPrepend01");
     345//    diag("testStrPrepend01");
    346346
    347347    ssize_t sz;
     
    360360psS32 testStrPrepend02(void)
    361361{
    362     diag("testStrPrepend02");
     362//    diag("testStrPrepend02");
    363363
    364364    char *str=NULL;
     
    377377psS32 testStrPrepend03(void)
    378378{
    379     diag("testStrPrepend03");
     379//    diag("testStrPrepend03");
    380380
    381381    char *str=NULL;
     
    397397psS32 testStrSplit00(void)
    398398{
    399     diag("testStrSplit00");
     399//    diag("testStrSplit00");
    400400
    401401    psList *strList = NULL;
     
    525525psS32 testNULLStrings(void)
    526526{
    527     diag("test""s");
     527//    diag("test""s");
    528528
    529529    psString nullTest = NULL;
     
    582582psS32 testStrCheck(void)
    583583{
    584     diag("testStrCheck");
     584//    diag("testStrCheck");
    585585
    586586    psString str = NULL;
  • trunk/psLib/test/sys/tap_psTrace.c

    r12512 r12513  
    4343static psS32 testTrace00(void)
    4444{
    45     diag("testTrace00");
     45//    diag("testTrace00");
    4646
    4747    psS32 i;
     
    8686static psS32 testTrace01(void)
    8787{
    88     diag("testTrace01");
     88//    diag("testTrace01");
    8989
    9090    //    psTraceSetDestination(stderr);
     
    103103static psS32 testTrace02(void)
    104104{
    105     diag("testTrace02");
     105//    diag("testTrace02");
    106106
    107107    psTraceReset();
     
    131131static psS32 testTrace03(void)
    132132{
    133     diag("testTrace03");
     133//    diag("testTrace03");
    134134
    135135    psS32 i = 0;
     
    172172static psS32 testTrace04(void)
    173173{
    174     diag("testTrace04");
     174//    diag("testTrace04");
    175175
    176176    int FD;
Note: See TracChangeset for help on using the changeset viewer.