summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-07-11 17:22:26 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-07-11 17:22:26 +0000
commit1a4af4684c659a37625785fab9422de206c7991c (patch)
tree20be8b55e78d7e72f1445426b9d621ddc1f2700d /test/Makefile
parent80e7510b59d85f1c0728bb9ff80e823973e5b54b (diff)
- add error-counter, do not immediately exit if a testcase fails but print
the overall error-counter at the end and exit accordingly.
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index c9d152477..5b240f49b 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -40,17 +40,18 @@ ifeq ($(HAS_NO_THREADS),y)
endif
DIRS := $(filter-out math,$(DIRS))
-
test check all: run
run: compile subdirs_run
compile:subdirs_compile
+ @echo 0 > $(COUNTER)
tags:
ctags -R
clean: subdirs_clean
+ @rm -f $(COUNTER)
subdirs: $(patsubst %, _dir_%, $(DIRS))
subdirs_compile: $(patsubst %, _dircompile_%, $(DIRS))