diff options
| author | Jakob Unterwurzacher | 2021-03-12 17:42:44 +0100 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2021-03-12 17:44:13 +0100 | 
| commit | d47bf9976f1eab67e53aaeebbd6de02b69a39a09 (patch) | |
| tree | c16b57a06cd2de34c42cc88f34e2ef6ba9bc2e11 | |
| parent | e2dc52a9657e530820b2d5b49ad7425b529029ce (diff) | |
Makefile: root_test: don't run test when compile fails
| -rw-r--r-- | Makefile | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -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: | 
