- Commit
- a3bbca211f3dac5527d62c07adfa12360c0f65ef
- Parent
- a5571189025387d8af0a2569576fadd3e65da543
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Non-verbose output on 'make testarchive', unless error occurs.
My personal build of CMark ✏️
Non-verbose output on 'make testarchive', unless error occurs.
1 file changed, 2 insertions, 4 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | Makefile | 6 | 2 | 4 |
diff --git a/Makefile b/Makefile @@ -111,16 +111,14 @@ testtarball: $(TARBALL) tar xvzf $(TARBALL); \ cd $(PKGDIR); \ mkdir build && cd build && cmake .. && make && \ - (ctest -V || \ - (cat build/Testing/Temporary/LastTest.log && exit 1)) + (ctest || (cat build/Testing/Temporary/LastTest.log && exit 1)) testziparchive: $(ZIPARCHIVE) rm -rf $(PKGDIR); \ unzip $(ZIPARCHIVE); \ cd $(PKGDIR); \ mkdir build && cd build && cmake .. && make && \ - (ctest -V || \ - (cat build/Testing/Temporary/LastTest.log && exit 1)) + (ctest || (cat build/Testing/Temporary/LastTest.log && exit 1)) $(ALLTESTS): spec.txt python3 test/spec_tests.py --spec $< --dump-tests | python3 -c 'import json; import sys; tests = json.loads(sys.stdin.read()); print("\n".join([test["markdown"] for test in tests]))' > $@