From d02131d206d0012511cc068a70d15ffe59162f31 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 22 Dec 2010 10:24:34 -0800 Subject: [PATCH] Add 'make test-valgrind' --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 14276b6bf8..05b1988646 100644 --- a/Makefile +++ b/Makefile @@ -25,9 +25,15 @@ uninstall: test: all python tools/test.py --mode=release simple message +test-valgrind: all + python tools/test.py --mode=release --valgrind simple message + test-all: all python tools/test.py --mode=debug,release +test-all-valgrind: all + python tools/test.py --mode=debug,release --valgrind + test-release: all python tools/test.py --mode=release