diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-11 17:22:26 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-11 17:22:26 +0000 |
commit | 1a4af4684c659a37625785fab9422de206c7991c (patch) | |
tree | 20be8b55e78d7e72f1445426b9d621ddc1f2700d /test/Makefile | |
parent | 80e7510b59d85f1c0728bb9ff80e823973e5b54b (diff) | |
download | uClibc-alpine-1a4af4684c659a37625785fab9422de206c7991c.tar.bz2 uClibc-alpine-1a4af4684c659a37625785fab9422de206c7991c.tar.xz |
- 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/Makefile | 3 |
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)) |