From 206b33ded4f6b05cb3d8106495a7bc3bec546f3e Mon Sep 17 00:00:00 2001 From: Pip Cet Date: Wed, 3 Feb 2021 14:33:49 +0000 Subject: [PATCH] Makefile: run the tests properly --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 32408ace..08790d8f 100644 --- a/Makefile +++ b/Makefile @@ -1149,7 +1149,7 @@ test/wasm32/%.exe.wasm: test/wasm32/%.exe tools/bin/elf-to-wasm # wasm output rule test/wasm32/%.wasm.out: test/wasm32/%.wasm - JS=$(JS) WASMDIR=$(PWD) $(JS) $(PWD)/js/wasm32.js $< > $@ 2> test/wasm32/$*.wasm.err || true + JS=$(JS) WASMDIR=$(PWD) EXECUTABLE=$< $(JS) $(PWD)/js/wasm32.js $< > $@ 2> test/wasm32/$*.wasm.err || true @echo "STDOUT" @cat $@ @echo "STDERR"