summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2015-09-01 15:56:20 -0700
committerBen Smith <binji@chromium.org>2015-09-01 15:56:20 -0700
commit829535dd928ba4fb7a2c801d2fb0deaa58ae2369 (patch)
tree56a026f326bfcca11d90ffc7f618785ae7be2f47 /Makefile
parentff855d4566232b047e75c4b448fb78ffff5a2938 (diff)
downloadwabt-829535dd928ba4fb7a2c801d2fb0deaa58ae2369.tar.gz
wabt-829535dd928ba4fb7a2c801d2fb0deaa58ae2369.tar.bz2
wabt-829535dd928ba4fb7a2c801d2fb0deaa58ae2369.zip
test runner
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 30c49849..76105b0e 100644
--- a/Makefile
+++ b/Makefile
@@ -13,6 +13,14 @@ out/:
out/sexpr-wasm: sexpr-wasm.c | out
$(CC) $(CFLAGS) -o $@ $<
+#### TESTS ####
+TEST_EXES=$(shell python test/run-tests.py --list-exes)
+
+.PHONY: test
+test: $(TEST_EXES)
+ @python test/run-tests.py
+
+#### CLEAN ####
.PHONY: clean
clean:
rm -rf out