diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-10-27 12:11:18 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-10-27 12:11:18 -0700 |
commit | 4d1f4a660c8ce9226746f485757d7885eaaf8d61 (patch) | |
tree | 66d1da443f7573da1d50c2916c8f5215db1a232f /makefile | |
parent | 536a22c1b83500d4efaa7a1eae0e84ac8743b768 (diff) | |
download | mu-4d1f4a660c8ce9226746f485757d7885eaaf8d61.tar.gz |
2288
Make it easy to skip distracting valgrind errors when debugging more obvious errors in early layers. Just throw a 'test' at the end of build_and_test_until commands to not run valgrind (and make it a regular test run).
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/makefile b/makefile index 27d4cbd6..e620a87c 100644 --- a/makefile +++ b/makefile @@ -46,6 +46,9 @@ test_list: mu.cc # .PHONY: all autogenerated_lists clean clena +test: autogenerated_lists mu_bin core.mu + ./mu_bin test + valgrind: autogenerated_lists mu_bin core.mu valgrind --leak-check=yes -q --error-exitcode=1 ./mu_bin test |