We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6081dea commit 346cec5Copy full SHA for 346cec5
Makefile
@@ -10,7 +10,7 @@ release:
10
test: debug release
11
cargo test
12
( cd util ; $(MAKE) test )
13
- ( cd tests; ./run_tests.sh )
+ ( cd tests; $(MAKE) test )
14
15
format:
16
cargo fmt
tests/Makefile
@@ -1,9 +1,15 @@
1
CFLAGS=-Wall -std=c89 -O1
2
-.PHONY: default rollup-programs clean
+.PHONY: default rollup-programs clean test
3
4
default:
5
@echo "Pick a specific target"
6
7
+# Necessary to delete the programs here b/c sometimes the directory is shared between
8
+# machines with different architectures.
9
+test:
+ $(MAKE) clean
+ ./run_tests.sh
+
rollup-programs: rollup rollup2 rollupchild rollupchild2
0 commit comments