aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile3
-rw-r--r--tests/scripts/makefile2
2 files changed, 1 insertions, 4 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 8a27691..0a662f7 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -8,9 +8,6 @@ SOURCES != echo */source.mk
DO != echo -n > tests.mk
include $(SOURCES)
-build/printf.o: common/printf.c
- mkdir -p build && $(COMPILE_TEST) -c common/printf.c -o build/printf.o
-
RM ?= rm
.PHONY: clean
diff --git a/tests/scripts/makefile b/tests/scripts/makefile
index 8ea802f..8079c3c 100644
--- a/tests/scripts/makefile
+++ b/tests/scripts/makefile
@@ -32,7 +32,7 @@ include tests.mk
.PHONY: check
check: $(TESTS)
- @for d in reports/* ; do \
+ @cd reports; for d in * ; do \
if [ ! -f "$$d/OK" ]; then \
echo "BROKEN: $$d" ; \
elif [ "$$(tail -n1 $$d/OK)" != "OK" ]; then \