summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules/check.mak8
1 files changed, 4 insertions, 4 deletions
diff --git a/rules/check.mak b/rules/check.mak
index 44d9fb5f..2cf56f7e 100644
--- a/rules/check.mak
+++ b/rules/check.mak
@@ -5,22 +5,22 @@ CLEANFILES += valgrind.*.log
# if the test fails, run it again at at least debug level 2
%.check: %
@$(TESTS_ENVIRONMENT) \
- $* || \
+ ./$* || \
$(TESTS_ENVIRONMENT) \
GIBBER_DEBUG=all \
- $*
+ ./$*
# run any given test in a loop
%.torture: %
@for i in `seq 1 $(LOOPS)`; do \
$(TESTS_ENVIRONMENT) \
- $*; done
+ ./$*; done
# run any given test in an infinite loop
%.forever: %
@while true; do \
$(TESTS_ENVIRONMENT) \
- $* || break; done
+ ./$* || break; done
# valgrind any given test by running make test.valgrind
%.valgrind: %