summaryrefslogtreecommitdiff
path: root/build/Makefile.tests
diff options
context:
space:
mode:
Diffstat (limited to 'build/Makefile.tests')
-rw-r--r--build/Makefile.tests5
1 files changed, 5 insertions, 0 deletions
diff --git a/build/Makefile.tests b/build/Makefile.tests
index 3faa7f3..0c5b85c 100644
--- a/build/Makefile.tests
+++ b/build/Makefile.tests
@@ -12,8 +12,13 @@ MEMCHECK_ENV = $(TEST_RUNNER) valgrind --error-exitcode=80 --quiet --trace-child
LEAKCHECK_ENV = $(TEST_RUNNER) valgrind --error-exitcode=81 --quiet --leak-check=yes
+HELLCHECK_ENV = $(TEST_RUNNER) valgrind --error-exitcode=82 --quiet --tool=helgrind
+
memcheck: all
make $(AM_MAKEFLAGS) TESTS_ENVIRONMENT="$(MEMCHECK_ENV)" check-TESTS
leakcheck: all
make $(AM_MAKEFLAGS) TESTS_ENVIRONMENT="$(LEAKCHECK_ENV)" check-TESTS
+
+hellcheck: all
+ make $(AM_MAKEFLAGS) TESTS_ENVIRONMENT="$(HELLCHECK_ENV)" check-TESTS