IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 13084 for trunk/psLib/test/sys


Ignore:
Timestamp:
Apr 30, 2007, 2:08:52 PM (19 years ago)
Author:
gusciora
Message:

Removed psLogMsg() calls from the test code.

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

Legend:

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

    r13010 r13084  
    55 *  @author  Eric Van Alst, MHPCC
    66 *
    7  *  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
    8  *  @date  $Date: 2007-04-25 01:07:08 $
     7 *  @version $Revision: 1.6 $  $Name: not supported by cvs2svn $
     8 *  @date  $Date: 2007-05-01 00:08:52 $
    99 *
    1010 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
    1111 *
    1212 */
    13 
    1413#include <stdio.h>
    1514#include <stdlib.h>
    1615#include <string.h>
    1716#include <inttypes.h>
    18 
    1917#include "pslib.h"
    2018#include "tap.h"
     
    3937{
    4038    psLogSetFormat("HLNM");
     39    psLogSetLevel(PS_LOG_INFO);
    4140    plan_tests(60);
    4241
     
    301300        // Verify the return value of psErrorCodeString
    302301        // psErrorCode code = PS_ERR_BAD_PARAMETER_VALUE;
    303         // psLogMsg("tst_psError05", PS_LOG_INFO, psErrorCodeString(code));
    304 
    305302        // Verify the return value of psErrorCodeString if code is negative
    306303        ok( psErrorCodeString(-1) == NULL, "error string with neg. code");
     
    359356                b. an appropriate error is generated.
    360357        */
    361         psLogMsg(__func__,PS_LOG_INFO,"Following should be an error.");
     358        // Following should be an error
    362359        psErrorClear();
    363360        psErrorRegister(NULL,1);
     
    379376    }
    380377}
    381 //HERE
  • trunk/psLib/test/sys/tap_psMemory.c

    r12781 r13084  
    55*  @author Robert DeSonia, MHPCC
    66*
    7 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
    8 *  @date $Date: 2007-04-10 21:09:31 $
     7*  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
     8*  @date $Date: 2007-05-01 00:08:52 $
    99*
    1010*  XXXX: Several tests fail with an Abort and are commented out.
     
    296296    }
    297297
    298 //HERE
    299298    // memCheckTypes()
    300299    if (1) {
  • trunk/psLib/test/sys/tap_psString.c

    r12781 r13084  
    2020 *  @author  Eric Van Alst, MHPCC
    2121 *
    22  *  @version $Revision: 1.8 $  $Name: not supported by cvs2svn $
    23  *  @date  $Date: 2007-04-10 21:09:31 $
     22 *  @version $Revision: 1.9 $  $Name: not supported by cvs2svn $
     23 *  @date  $Date: 2007-05-01 00:08:52 $
    2424 *
    2525 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
    2626 *
    2727 */
    28 
    2928#include <string.h>
    3029#include "pslib.h"
    3130#include "tap.h"
    3231#include "pstap.h"
    33 
    3432
    3533#define STR_0 "binky had a leeeetle lamb"
     
    409407        char** test = NULL;
    410408        //psStringCopy should return NULL for NULL input string
    411         //    psLogMsg(__func__,PS_LOG_INFO,"Following should generate error message");
     409        // Following should generate error message
    412410        output = psStringCopy(nullTest);
    413411        ok(output == NULL, "psStringCopy to return NULL for NULL input string");
     
    463461    }
    464462}
    465 // HERE
Note: See TracChangeset for help on using the changeset viewer.