From d47bf9976f1eab67e53aaeebbd6de02b69a39a09 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Fri, 12 Mar 2021 17:42:44 +0100 Subject: [PATCH] Makefile: root_test: don't run test when compile fails --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: