about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2024-12-04 19:20:49 +0100
committerbptato <nincsnevem662@gmail.com>2024-12-04 19:42:23 +0100
commit52e5d7093929d127c4296a96ca97a0d423cba820 (patch)
treee0d4f97d190736a51a740c1f1c1a18f4c68b5e03 /Makefile
parent0d6f86a0ac9173bf7989dcdb2d105313b040b9b4 (diff)
downloadchawan-52e5d7093929d127c4296a96ca97a0d423cba820.tar.gz
md2html: another list bugfix, add a test
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
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