From 1c765e345abbbb54f8bc533baebc8300685c4d05 Mon Sep 17 00:00:00 2001 From: Daniel Mueller Date: Fri, 4 Jan 2019 16:30:33 -0800 Subject: Remove 'test' target from Makefile A while ago we removed all device specific tests from the project as part of the move to using the nitrokey crate. While adding additional tests is a work in progress, the intention is to have them run solely by issuing 'cargo test'. In any case, this change removes the 'test' target from the Makefile as it is no longer needed, because all tests can run concurrently just fine. --- nitrocli/Makefile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/nitrocli/Makefile b/nitrocli/Makefile index cc1ad3f..d87a09a 100644 --- a/nitrocli/Makefile +++ b/nitrocli/Makefile @@ -17,15 +17,6 @@ # * along with this program. If not, see . * # ***************************************************************************/ - -# We do not want to run the tests concurrently as the Nitrokey seems to -# have problems with that. We also do not want to introduce additional -# locking because in the normal program work flow we will not have -# multiple requests issued in parallel. -.PHONY: test -test: - @RUST_TEST_NOCAPTURE=1 RUST_TEST_THREADS=1 cargo test - PS2PDF ?= ps2pdf NITROCLI_MAN := doc/nitrocli.1 -- cgit v1.2.1