aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJakob Unterwurzacher2021-03-12 17:42:44 +0100
committerJakob Unterwurzacher2021-03-12 17:44:13 +0100
commitd47bf9976f1eab67e53aaeebbd6de02b69a39a09 (patch)
treec16b57a06cd2de34c42cc88f34e2ef6ba9bc2e11 /Makefile
parente2dc52a9657e530820b2d5b49ad7425b529029ce (diff)
Makefile: root_test: don't run test when compile fails
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2371a17..bdc05cf 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ test:
.phony: root_test
root_test:
./build.bash
- cd tests/root_test ; go test -c ; sudo ./root_test.test -test.v
+ cd tests/root_test && go test -c && sudo ./root_test.test -test.v
.phony: format
format: