Browse Source

remove old depend on Config and make it so that a test failure aborts the make process

Mike Frysinger 20 years ago
parent
commit
095ca55f2e

+ 2 - 2
test/args/Makefile

@@ -21,7 +21,7 @@ include ../Rules.mak
 TARGETS=arg_test
 all: $(TARGETS)
 
-arg_test: arg_test.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+arg_test: arg_test.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -29,7 +29,7 @@ arg_test: arg_test.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ a b c d e f g h
+	./$@ a b c d e f g h
 	-@ echo " "
 
 clean:

+ 2 - 2
test/assert/Makefile

@@ -21,7 +21,7 @@ include ../Rules.mak
 TARGETS=assert
 all: $(TARGETS)
 
-assert: assert.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+assert: assert.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -29,7 +29,7 @@ assert: assert.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@ ; ret=$$? ; test $$ret -eq 134
 	-@ echo " "
 
 clean:

+ 7 - 9
test/crypt/Makefile

@@ -23,7 +23,7 @@ EXTRA_LIBS=-lcrypt
 
 all: $(TARGETS)
 
-crypt: crypt.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+crypt: crypt.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -31,10 +31,10 @@ crypt: crypt.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ < crypt.input #> $@.out 2>&1
+	./$@ < crypt.input #> $@.out 2>&1
 	-@ echo " "
 
-crypt_glibc: crypt.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+crypt_glibc: crypt.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs glibc: "
@@ -42,7 +42,7 @@ crypt_glibc: crypt.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ < crypt.input > $@.out 2>&1
+	./$@ < crypt.input > $@.out 2>&1
 	-@ echo " "
 
 diff: crypt_glibc crypt
@@ -50,10 +50,10 @@ diff: crypt_glibc crypt
 	-@ echo " "
 	-@ echo "Diffing output: "
 	-@ echo " "
-	-diff -u crypt_glibc.out crypt.out
+	diff -u crypt_glibc.out crypt.out
 	-@ echo " "
 
-md5c-test: md5c-test.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+md5c-test: md5c-test.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -61,10 +61,8 @@ md5c-test: md5c-test.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
 clean:
 	$(RM) *.[oa] *~ core crypt_glibc crypt crypt_glibc.out crypt.out md5c-test
-
-

+ 1 - 1
test/ctype/Makefile

@@ -21,7 +21,7 @@ include ../Rules.mak
 TARGETS=ctype ctype_run
 all: $(TARGETS)
 
-ctype: ctype.c ../testsuite.h Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+ctype: ctype.c ../testsuite.h Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "

+ 0 - 1
test/dlopen/Makefile

@@ -72,4 +72,3 @@ run: libtest2.so libtest1.so test1 test2 test3 dltest libtest.so dltest2 libtest
 clean:
 	$(RM) *.o libtest1.so* libtest2.so* test1 test2 test3 \
 		dltest dltest2 libtest.so libtest3.so
-

+ 11 - 11
test/malloc/Makefile

@@ -24,7 +24,7 @@ TARGETS+=mallocbug mallocbug_glibc
 TARGETS+=realloc0 realloc0_glibc
 all: $(TARGETS)
 
-malloc: malloc.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+malloc: malloc.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -32,7 +32,7 @@ malloc: malloc.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
 testmalloc_source:
@@ -42,7 +42,7 @@ testmalloc_source:
 	-@ cat testmalloc.c
 	-@ echo " "
 
-testmalloc: testmalloc.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+testmalloc: testmalloc.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -52,7 +52,7 @@ testmalloc: testmalloc.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@
+	./$@
 	-@ echo " "
 
 testmalloc_glibc: testmalloc.c Makefile
@@ -65,10 +65,10 @@ testmalloc_glibc: testmalloc.c Makefile
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@
+	./$@
 	-@ echo " "
 
-mallocbug: mallocbug.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+mallocbug: mallocbug.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -78,7 +78,7 @@ mallocbug: mallocbug.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@
+	./$@
 	-@ echo " "
 
 mallocbug_glibc: mallocbug.c Makefile
@@ -91,10 +91,10 @@ mallocbug_glibc: mallocbug.c Makefile
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@
+	./$@
 	-@ echo " "
 
-realloc0: realloc0.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+realloc0: realloc0.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -104,7 +104,7 @@ realloc0: realloc0.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@
+	./$@
 	-@ echo " "
 
 realloc0_glibc: realloc0.c Makefile
@@ -117,7 +117,7 @@ realloc0_glibc: realloc0.c Makefile
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@
+	./$@
 	-@ echo " "
 
 

+ 10 - 10
test/math/Makefile

@@ -38,24 +38,24 @@ all: $(TARGETS)
 	
 test-double: test-double.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
-	-./$@
+	./$@
 test-idouble: test-idouble.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
-	-./$@
+	./$@
 test-float: test-float.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
-	-./$@
+	./$@
 test-ifloat: test-ifloat.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
-	-./$@
+	./$@
 test-ldouble: test-ldouble.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
-	-./$@
+	./$@
 test-ildouble: test-ildoubl.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
-	-./$@
+	./$@
 
-rint: rint.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+rint: rint.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -63,10 +63,10 @@ rint: rint.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ > $@.out 2>&1
+	./$@ > $@.out 2>&1
 	-@ echo " "
 
-rint_glibc: rint.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+rint_glibc: rint.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs glibc: "
@@ -74,7 +74,7 @@ rint_glibc: rint.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ > $@.out 2>&1
+	./$@ > $@.out 2>&1
 	-@ echo " "
 
 diff: rint_glibc rint

+ 11 - 11
test/misc/Makefile

@@ -23,7 +23,7 @@ CFLAGS64=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
 TARGETS=sem fdopen dirent_diff dirent64_diff #outb
 all: $(TARGETS)
 
-outb: outb.c ../testsuite.h Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+outb: outb.c ../testsuite.h Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -34,7 +34,7 @@ outb: outb.c ../testsuite.h Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	./$@
 	-@ echo " "
 
-sem: sem.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+sem: sem.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -42,10 +42,10 @@ sem: sem.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
-fdopen: fdopen.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+fdopen: fdopen.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -53,7 +53,7 @@ fdopen: fdopen.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
 dirent_source:
@@ -64,7 +64,7 @@ dirent_source:
 	-@ cat dirent.c
 	-@ echo " "
 
-dirent: dirent.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+dirent: dirent.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -72,7 +72,7 @@ dirent: dirent.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ dirent.c > $@.out
+	./$@ dirent.c > $@.out
 	-@ echo " "
 
 dirent_glibc: dirent.c Makefile
@@ -83,7 +83,7 @@ dirent_glibc: dirent.c Makefile
 	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ dirent.c > $@.out
+	./$@ dirent.c > $@.out
 	-@ echo " "
 
 dirent_diff: dirent dirent_glibc
@@ -94,7 +94,7 @@ dirent_diff: dirent dirent_glibc
 	-diff -u dirent_glibc.out dirent.out
 	-@ echo " "
 
-dirent64: dirent.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+dirent64: dirent.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -102,7 +102,7 @@ dirent64: dirent.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) $(CFLAGS64) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ dirent.c > $@.out
+	./$@ dirent.c > $@.out
 	-@ echo " "
 
 dirent64_glibc: dirent.c Makefile
@@ -113,7 +113,7 @@ dirent64_glibc: dirent.c Makefile
 	$(HOSTCC) $(GLIBC_CFLAGS) $(CFLAGS64) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ dirent.c > $@.out
+	./$@ dirent.c > $@.out
 	-@ echo " "
 
 dirent64_diff: dirent64 dirent64_glibc

+ 2 - 2
test/mmap/Makefile

@@ -21,7 +21,7 @@ include ../Rules.mak
 TARGETS=mmap
 all: $(TARGETS)
 
-mmap: mmap.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+mmap: mmap.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -29,7 +29,7 @@ mmap: mmap.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
 clean:

+ 14 - 15
test/pthread/Makefile

@@ -25,7 +25,7 @@ EXTRA_LIBS += -lpthread
 TARGETS=ex1 ex2 ex3 ex4 ex5 ex6 ex7
 all: $(TARGETS)
 
-ex1: ex1.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+ex1: ex1.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -33,10 +33,10 @@ ex1: ex1.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
-ex2: ex2.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+ex2: ex2.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -44,10 +44,10 @@ ex2: ex2.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
-ex3: ex3.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+ex3: ex3.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -55,10 +55,10 @@ ex3: ex3.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
-ex4: ex4.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+ex4: ex4.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -66,10 +66,10 @@ ex4: ex4.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
-ex5: ex5.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+ex5: ex5.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -77,10 +77,10 @@ ex5: ex5.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
-ex6: ex6.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+ex6: ex6.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -88,10 +88,10 @@ ex6: ex6.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
-ex7: ex7.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+ex7: ex7.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -99,9 +99,8 @@ ex7: ex7.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
 clean:
 	$(RM) *.[oa] *~ core $(TARGETS)
-

+ 15 - 15
test/pwd_grp/Makefile

@@ -27,7 +27,7 @@ TARGETS+=test_pwd_diff test_grp_diff pwcat_diff grcat_diff getgroups_diff
 
 all: $(TARGETS)
 
-test_pwd: test_pwd.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+test_pwd: test_pwd.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -35,7 +35,7 @@ test_pwd: test_pwd.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ 2>&1 >test_pwd.out
+	./$@ 2>&1 >test_pwd.out
 	-@ echo " "
 
 test_pwd_glibc: test_pwd.c Makefile
@@ -46,10 +46,10 @@ test_pwd_glibc: test_pwd.c Makefile
 	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ 2>&1 >test_pwd_glibc.out
+	./$@ 2>&1 >test_pwd_glibc.out
 	-@ echo " "
 
-test_grp: test_grp.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+test_grp: test_grp.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -57,7 +57,7 @@ test_grp: test_grp.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ 2>&1 >test_grp.out
+	./$@ 2>&1 >test_grp.out
 	-@ echo " "
 
 test_grp_glibc: test_grp.c Makefile
@@ -68,10 +68,10 @@ test_grp_glibc: test_grp.c Makefile
 	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ 2>&1 >test_grp_glibc.out
+	./$@ 2>&1 >test_grp_glibc.out
 	-@ echo " "
 
-pwcat: pwcat.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+pwcat: pwcat.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -79,7 +79,7 @@ pwcat: pwcat.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ 2>&1 >pwcat.out
+	./$@ 2>&1 >pwcat.out
 	-@ echo " "
 
 pwcat_glibc: pwcat.c Makefile
@@ -90,10 +90,10 @@ pwcat_glibc: pwcat.c Makefile
 	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ 2>&1 >pwcat_glibc.out
+	./$@ 2>&1 >pwcat_glibc.out
 	-@ echo " "
 
-grcat: grcat.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+grcat: grcat.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -101,7 +101,7 @@ grcat: grcat.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ 2>&1 >grcat.out
+	./$@ 2>&1 >grcat.out
 	-@ echo " "
 
 grcat_glibc: grcat.c Makefile
@@ -112,10 +112,10 @@ grcat_glibc: grcat.c Makefile
 	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ 2>&1 >grcat_glibc.out
+	./$@ 2>&1 >grcat_glibc.out
 	-@ echo " "
 
-getgroups: getgroups.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+getgroups: getgroups.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -123,7 +123,7 @@ getgroups: getgroups.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ 2>&1 >getgroups.out
+	./$@ 2>&1 >getgroups.out
 	-@ echo " "
 
 getgroups_glibc: getgroups.c Makefile
@@ -134,7 +134,7 @@ getgroups_glibc: getgroups.c Makefile
 	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ 2>&1 >getgroups_glibc.out
+	./$@ 2>&1 >getgroups_glibc.out
 	-@ echo " "
 
 test_pwd_diff: test_pwd_glibc test_pwd

+ 2 - 2
test/setjmp/Makefile

@@ -21,7 +21,7 @@ include ../Rules.mak
 TARGETS=setjmp_test
 all: $(TARGETS)
 
-setjmp_test: setjmp_test.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+setjmp_test: setjmp_test.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -29,7 +29,7 @@ setjmp_test: setjmp_test.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
 clean:

+ 6 - 6
test/signal/Makefile

@@ -23,7 +23,7 @@ CFLAGS += -D_GNU_SOURCE
 TARGETS=signal signal_glibc sigchld sigchld_glibc 
 all: $(TARGETS)
 
-signal: signal.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+signal: signal.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -31,7 +31,7 @@ signal: signal.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
 signal_glibc: signal.c Makefile
@@ -42,10 +42,10 @@ signal_glibc: signal.c Makefile
 	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
-sigchld: sigchld.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+sigchld: sigchld.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -53,7 +53,7 @@ sigchld: sigchld.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
 sigchld_glibc: sigchld.c Makefile
@@ -64,7 +64,7 @@ sigchld_glibc: sigchld.c Makefile
 	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
 clean:

+ 5 - 5
test/silly/Makefile

@@ -30,7 +30,7 @@ hello_source:
 	-@ cat hello.c
 	-@ echo " "
 
-hello: hello.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+hello: hello.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -40,7 +40,7 @@ hello: hello.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@
+	./$@
 	-@ echo " "
 
 hello_glibc: hello.c Makefile
@@ -53,11 +53,11 @@ hello_glibc: hello.c Makefile
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@
+	./$@
 	-@ echo " "
 
 
-tiny: tiny.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+tiny: tiny.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -67,7 +67,7 @@ tiny: tiny.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@
+	./$@
 	-@ echo " "
 
 

+ 6 - 6
test/stat/Makefile

@@ -33,7 +33,7 @@ stat_source:
 	-@ cat stat.c
 	-@ echo " "
 
-stat: stat.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+stat: stat.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -41,7 +41,7 @@ stat: stat.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ stat.c > $@.out
+	./$@ stat.c > $@.out
 	-@ echo " "
 
 stat_glibc: stat.c Makefile
@@ -52,7 +52,7 @@ stat_glibc: stat.c Makefile
 	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ stat.c > $@.out
+	./$@ stat.c > $@.out
 	-@ echo " "
 
 stat_diff: stat stat_glibc
@@ -63,7 +63,7 @@ stat_diff: stat stat_glibc
 	-diff -u stat_glibc.out stat.out
 	-@ echo " "
 
-stat64: stat.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+stat64: stat.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -71,7 +71,7 @@ stat64: stat.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) $(CFLAGS64) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ stat.c > $@.out
+	./$@ stat.c > $@.out
 	-@ echo " "
 
 stat64_glibc: stat.c Makefile
@@ -82,7 +82,7 @@ stat64_glibc: stat.c Makefile
 	$(HOSTCC) $(GLIBC_CFLAGS) $(CFLAGS64) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ stat.c > $@.out
+	./$@ stat.c > $@.out
 	-@ echo " "
 
 stat64_diff: stat64 stat64_glibc

+ 14 - 14
test/stdlib/Makefile

@@ -33,7 +33,7 @@ teststrtol_source:
 	-@ cat teststrtol.c
 	-@ echo " "
 
-teststrtol: teststrtol.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+teststrtol: teststrtol.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -43,7 +43,7 @@ teststrtol: teststrtol.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@ > $@.out
+	./$@ > $@.out
 	-@ echo " "
 
 teststrtol_glibc: teststrtol.c Makefile
@@ -56,7 +56,7 @@ teststrtol_glibc: teststrtol.c Makefile
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@ > $@.out
+	./$@ > $@.out
 	-@ echo " "
 
 teststrtol_diff: teststrtol_glibc teststrtol
@@ -67,7 +67,7 @@ teststrtol_diff: teststrtol_glibc teststrtol
 	-diff -u teststrtol_glibc.out teststrtol.out
 	-@ echo " "
 
-qsort: qsort.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+qsort: qsort.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -77,7 +77,7 @@ qsort: qsort.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@ > $@.out
+	./$@ > $@.out
 	-@ echo " "
 
 qsort_glibc: qsort.c Makefile
@@ -90,7 +90,7 @@ qsort_glibc: qsort.c Makefile
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@ > $@.out
+	./$@ > $@.out
 	-@ echo " "
 
 qsort_diff: qsort_glibc qsort
@@ -101,7 +101,7 @@ qsort_diff: qsort_glibc qsort
 	-diff -u qsort_glibc.out qsort.out
 	-@ echo " "
 
-teston_exit: teston_exit.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+teston_exit: teston_exit.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -111,7 +111,7 @@ teston_exit: teston_exit.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@ > $@.out
+	./$@ > $@.out
 	-@ echo " "
 
 teston_exit_glibc: teston_exit.c Makefile
@@ -124,7 +124,7 @@ teston_exit_glibc: teston_exit.c Makefile
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@ > $@.out
+	./$@ > $@.out
 	-@ echo " "
 
 teston_exit_diff: teston_exit_glibc teston_exit
@@ -135,7 +135,7 @@ teston_exit_diff: teston_exit_glibc teston_exit
 	-diff -u teston_exit_glibc.out teston_exit.out
 	-@ echo " "
 
-testatexit: testatexit.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+testatexit: testatexit.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -145,7 +145,7 @@ testatexit: testatexit.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@ > $@.out
+	./$@ > $@.out
 	-@ echo " "
 
 testatexit_glibc: testatexit.c Makefile
@@ -158,7 +158,7 @@ testatexit_glibc: testatexit.c Makefile
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@ > $@.out
+	./$@ > $@.out
 	-@ echo " "
 
 testatexit_diff: testatexit_glibc testatexit
@@ -169,7 +169,7 @@ testatexit_diff: testatexit_glibc testatexit
 	-diff -u testatexit_glibc.out testatexit.out
 	-@ echo " "
 
-ptytest: ptytest.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+ptytest: ptytest.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -179,7 +179,7 @@ ptytest: ptytest.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@
+	./$@
 	-@ echo " "
 
 

+ 9 - 9
test/string/Makefile

@@ -24,7 +24,7 @@ TARGETS+=#strerror #strsignal
 
 all: $(TARGETS)
 
-string: string.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+string: string.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -32,7 +32,7 @@ string: string.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
 string_glibc: string.c Makefile
@@ -43,10 +43,10 @@ string_glibc: string.c Makefile
 	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
-testcopy: testcopy.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+testcopy: testcopy.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -54,7 +54,7 @@ testcopy: testcopy.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ > testcopy.out
+	./$@ > testcopy.out
 	-@ echo " "
 
 testcopy_glibc: testcopy.c Makefile
@@ -65,7 +65,7 @@ testcopy_glibc: testcopy.c Makefile
 	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@ > testcopy.gnu.out
+	./$@ > testcopy.gnu.out
 	-@ echo " "
 
 testcopy_diff: testcopy testcopy_glibc
@@ -77,7 +77,7 @@ testcopy_diff: testcopy testcopy_glibc
 	-@ echo " "
 
 
-strerror: ../../libc/string/strerror.c $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+strerror: ../../libc/string/strerror.c $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -85,7 +85,7 @@ strerror: ../../libc/string/strerror.c $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -DCHECK_BUF -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
 strsignal: ../../libc/string/strsignal.c
@@ -96,7 +96,7 @@ strsignal: ../../libc/string/strsignal.c
 	$(CC) $(CFLAGS) -DCHECK_BUF -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
 

+ 3 - 3
test/termios/Makefile

@@ -22,7 +22,7 @@ TARGETS=termios termios_glibc
 
 all: $(TARGETS)
 
-termios: termios.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+termios: termios.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -32,7 +32,7 @@ termios: termios.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@
+	./$@
 	-@ echo " "
 
 termios_glibc: termios.c Makefile
@@ -45,7 +45,7 @@ termios_glibc: termios.c Makefile
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	-$(LDD) $@
 	ls -l $@
-	-./$@
+	./$@
 	-@ echo " "
 
 clean:

+ 8 - 8
test/unistd/Makefile

@@ -21,7 +21,7 @@ include ../Rules.mak
 TARGETS=fork fork_glibc vfork vfork_glibc getcwd getopt getopt_long preadwrite 
 all: $(TARGETS)
 
-getcwd: getcwd.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+getcwd: getcwd.c Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -32,7 +32,7 @@ getcwd: getcwd.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
 	./$@
 	-@ echo " "
 
-fork: fork.c ../testsuite.h Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+fork: fork.c ../testsuite.h Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -51,10 +51,10 @@ fork_glibc: fork.c ../testsuite.h Makefile
 	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
-vfork: vfork.c ../testsuite.h Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+vfork: vfork.c ../testsuite.h Makefile $(TESTDIR)/Rules.mak
 	-@ echo "-------"
 	-@ echo " "
 	-@ echo "Compiling vs uClibc: "
@@ -73,24 +73,24 @@ vfork_glibc: vfork.c ../testsuite.h Makefile
 	$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
 	$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $@
-	-./$@
+	./$@
 	-@ echo " "
 
-getopt: getopt.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+getopt: getopt.c Makefile $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	./$@ -abcXXX -9
 	-@ echo " "
 
-getopt_long: getopt_long.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+getopt_long: getopt_long.c Makefile $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@
 	./$@ --add XXX --delete YYY --verbose
 	-@ echo " "
 
-preadwrite: preadwrite.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak
+preadwrite: preadwrite.c Makefile $(TESTDIR)/Rules.mak
 	$(CC) $(CFLAGS) -c $< -o $@.o
 	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
 	$(STRIPTOOL) -x -R .note -R .comment $@