Changeset 25027 for branches/pap/psLib/test/sys/tap_psString.c
- Timestamp:
- Aug 7, 2009, 4:08:25 PM (17 years ago)
- Location:
- branches/pap
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
psLib/test/sys/tap_psString.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/pap
- Property svn:mergeinfo changed
-
branches/pap/psLib/test/sys/tap_psString.c
r17515 r25027 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.
