Changeset 13084 for trunk/psLib/test/sys
- Timestamp:
- Apr 30, 2007, 2:08:52 PM (19 years ago)
- Location:
- trunk/psLib/test/sys
- Files:
-
- 3 edited
-
tap_psError.c (modified) (5 diffs)
-
tap_psMemory.c (modified) (2 diffs)
-
tap_psString.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/sys/tap_psError.c
r13010 r13084 5 5 * @author Eric Van Alst, MHPCC 6 6 * 7 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $8 * @date $Date: 2007-0 4-25 01:07:08$7 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2007-05-01 00:08:52 $ 9 9 * 10 10 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 11 11 * 12 12 */ 13 14 13 #include <stdio.h> 15 14 #include <stdlib.h> 16 15 #include <string.h> 17 16 #include <inttypes.h> 18 19 17 #include "pslib.h" 20 18 #include "tap.h" … … 39 37 { 40 38 psLogSetFormat("HLNM"); 39 psLogSetLevel(PS_LOG_INFO); 41 40 plan_tests(60); 42 41 … … 301 300 // Verify the return value of psErrorCodeString 302 301 // psErrorCode code = PS_ERR_BAD_PARAMETER_VALUE; 303 // psLogMsg("tst_psError05", PS_LOG_INFO, psErrorCodeString(code));304 305 302 // Verify the return value of psErrorCodeString if code is negative 306 303 ok( psErrorCodeString(-1) == NULL, "error string with neg. code"); … … 359 356 b. an appropriate error is generated. 360 357 */ 361 psLogMsg(__func__,PS_LOG_INFO,"Following should be an error.");358 // Following should be an error 362 359 psErrorClear(); 363 360 psErrorRegister(NULL,1); … … 379 376 } 380 377 } 381 //HERE -
trunk/psLib/test/sys/tap_psMemory.c
r12781 r13084 5 5 * @author Robert DeSonia, MHPCC 6 6 * 7 * @version $Revision: 1. 7$ $Name: not supported by cvs2svn $8 * @date $Date: 2007-0 4-10 21:09:31$7 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2007-05-01 00:08:52 $ 9 9 * 10 10 * XXXX: Several tests fail with an Abort and are commented out. … … 296 296 } 297 297 298 //HERE299 298 // memCheckTypes() 300 299 if (1) { -
trunk/psLib/test/sys/tap_psString.c
r12781 r13084 20 20 * @author Eric Van Alst, MHPCC 21 21 * 22 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $23 * @date $Date: 2007-0 4-10 21:09:31$22 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 23 * @date $Date: 2007-05-01 00:08:52 $ 24 24 * 25 25 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 26 26 * 27 27 */ 28 29 28 #include <string.h> 30 29 #include "pslib.h" 31 30 #include "tap.h" 32 31 #include "pstap.h" 33 34 32 35 33 #define STR_0 "binky had a leeeetle lamb" … … 409 407 char** test = NULL; 410 408 //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 412 410 output = psStringCopy(nullTest); 413 411 ok(output == NULL, "psStringCopy to return NULL for NULL input string"); … … 463 461 } 464 462 } 465 // HERE
Note:
See TracChangeset
for help on using the changeset viewer.
