diff options
author | bptato <nincsnevem662@gmail.com> | 2024-12-04 19:20:49 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-12-04 19:42:23 +0100 |
commit | 52e5d7093929d127c4296a96ca97a0d423cba820 (patch) | |
tree | e0d4f97d190736a51a740c1f1c1a18f4c68b5e03 /Makefile | |
parent | 0d6f86a0ac9173bf7989dcdb2d105313b040b9b4 (diff) | |
download | chawan-52e5d7093929d127c4296a96ca97a0d423cba820.tar.gz |
md2html: another list bugfix, add a test
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile b/Makefile index b622e11f..8622dfc3 100644 --- a/Makefile +++ b/Makefile @@ -241,15 +241,19 @@ test/net/run: test/net/run.nim .PHONY: test_js test_js: - (cd test/js && ./run_js_tests.sh) + (cd test/js && ./run.sh) .PHONY: test_layout test_layout: - (cd test/layout && ./run_layout_tests.sh) + (cd test/layout && ./run.sh) + +.PHONY: test_md +test_md: + (cd test/md && ./run.sh) .PHONY: test_net test_net: test/net/run (cd test/net && ./run) .PHONY: test -test: test_js test_layout test_net +test: test_js test_layout test_net test_md |