diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-12 15:30:49 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-12 15:30:49 +0000 |
commit | af1112c8d97830aa66715239e8d4f94811398ac6 (patch) | |
tree | 9bec85b094cc21920136c676462f2b98d06d9a92 /test | |
parent | 61885f3c4185f3aea2bd3b98f954935d221458e7 (diff) |
Makefile update
Diffstat (limited to 'test')
-rw-r--r-- | test/string/Makefile | 2 | ||||
-rw-r--r-- | test/string/string.c | 7 |
2 files changed, 1 insertions, 8 deletions
diff --git a/test/string/Makefile b/test/string/Makefile index 5384c9dec..e8725db3f 100644 --- a/test/string/Makefile +++ b/test/string/Makefile @@ -1,5 +1,5 @@ TOPDIR=../../ -include $(TOPDIR)Rules.make +include $(TOPDIR)Rules.mak # Check if 'ls -sh' works or not LSFLAGS = $(shell if ls -sh >/dev/null 2>&1; \ diff --git a/test/string/string.c b/test/string/string.c index 2492755d0..c59262717 100644 --- a/test/string/string.c +++ b/test/string/string.c @@ -580,21 +580,14 @@ test_strsep (void) equal(one+2, "b", 49); equal(one+4, "c", 50); -printf( "A\n"); { char text[] = "This,is,a,test"; char *list = strdup (text); -printf( "B\n"); equal (strsep (&list, ","), "This", 51); -printf( "C\n"); equal (strsep (&list, ","), "is", 52); -printf( "D\n"); equal (strsep (&list, ","), "a", 53); -printf( "E\n"); equal (strsep (&list, ","), "test", 54); -printf( "F\n"); check (strsep (&list, ",") == NULL, 55); -printf( "G\n"); } cp = strcpy(one, "a,b, c,, ,d,"); |