diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-29 11:29:45 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-29 11:30:08 -0800 |
commit | d8226ea031f61572f397af0735ec32c6ab0a231a (patch) | |
tree | 2d875a4c7251f2de9a830557a3e3958821abc61d /Makefile | |
parent | ccb33be77cc1109a078b73f859c51a079958d81d (diff) |
Fixed ALLTESTS target for new spec_tests.py location.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -108,7 +108,7 @@ testziparchive: $(ZIPARCHIVE) mkdir build && cd build && cmake .. && make && ctest -V $(ALLTESTS): spec.txt - python spec_tests.py --spec $< --dump-tests | python -c 'import json; import sys; tests = json.loads(sys.stdin.read()); print "\n".join([test["markdown"] for test in tests]).encode("utf-8")' > $@ + python test/spec_tests.py --spec $< --dump-tests | python -c 'import json; import sys; tests = json.loads(sys.stdin.read()); print "\n".join([test["markdown"] for test in tests]).encode("utf-8")' > $@ leakcheck: $(ALLTESTS) $(PROG) cat $< | valgrind --leak-check=full --dsymutil=yes --error-exitcode=1 $(PROG) >/dev/null |