Changeset 24023 for trunk/psLib/test/sys/tap_psString.c
- Timestamp:
- Apr 30, 2009, 2:26:44 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/psLib/test/sys/tap_psString.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/sys/tap_psString.c
r17515 r24023 420 420 421 421 //psStringAppend should return 0 for NULL input format 422 outSize = psStringAppend(test, nullTest); 422 // note that only a string literal is allowed for the NULL due to gcc change 423 outSize = psStringAppend(test, NULL); 423 424 ok(outSize == 0, "psStringAppend to return 0 for NULL input format"); 424 425 … … 428 429 429 430 //psStringPrepend should return 0 for NULL input format 430 outSize = psStringPrepend(test, nullTest); 431 // note that only a string literal is allowed for the NULL due to gcc change 432 outSize = psStringPrepend(test, NULL); 431 433 ok(outSize == 0, "psStringPrepend to return 0 for NULL input format"); 432 434
Note:
See TracChangeset
for help on using the changeset viewer.
