diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-06 01:22:13 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-06 01:22:13 +0000 |
commit | cba38d38fb2f7d5bd405a9980bcd8783dd00feba (patch) | |
tree | 60b87492b4a2d9133818c1f744ca406937605375 /test | |
parent | 150b2a09501a212d409578663b538fdd669895c4 (diff) |
make test failures fatal
Diffstat (limited to 'test')
-rw-r--r-- | test/dlopen/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/dlopen/Makefile b/test/dlopen/Makefile index 3afbc0f49..48d5e29cc 100644 --- a/test/dlopen/Makefile +++ b/test/dlopen/Makefile @@ -59,15 +59,15 @@ libtest3.so: libtest.c run: libtest2.so libtest1.so test1 test2 test3 dltest libtest.so dltest2 libtest3.so @echo "----------running test 1--------------" - -LD_LIBRARY_PATH=`pwd`:. $(DEBUG_LIBS)=all ./test1 + LD_LIBRARY_PATH=`pwd`:. $(DEBUG_LIBS)=all ./test1 @echo "----------running test 2--------------" - -LD_LIBRARY_PATH=`pwd`:. $(DEBUG_LIBS)=all ./test2 + LD_LIBRARY_PATH=`pwd`:. $(DEBUG_LIBS)=all ./test2 @echo "----------running test 3--------------" - -LD_LIBRARY_PATH=`pwd`:. $(DEBUG_LIBS)=all ./test3 + LD_LIBRARY_PATH=`pwd`:. $(DEBUG_LIBS)=all ./test3 @echo "----------running test 3--------------" - -$(DEBUG_LIBS)=all ./dltest2 + $(DEBUG_LIBS)=all ./dltest2 @echo "----------running test 4--------------" - -$(DEBUG_LIBS)=all ./dltest + $(DEBUG_LIBS)=all ./dltest clean: $(RM) *.o libtest1.so* libtest2.so* test1 test2 test3 \ |