diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2019-01-07 15:54:14 +0100 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2019-01-07 15:54:14 +0100 |
commit | 48841b1a9ec15f0b7607f9f480a93a146458630b (patch) | |
tree | b316f92c54f0b2615db1d820bf74002d6b9a5d38 | |
parent | 0abaa62498f491423c5b0945fcfac224e2f74b0f (diff) | |
download | libnitrokey-137-stick_hangs.tar.gz libnitrokey-137-stick_hangs.tar.bz2 |
Be less verbose in libnk test case summary137-stick_hangs
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
-rwxr-xr-x | build/test_137-wrapper | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/build/test_137-wrapper b/build/test_137-wrapper index 98ac0d0..753d8c3 100755 --- a/build/test_137-wrapper +++ b/build/test_137-wrapper @@ -10,20 +10,23 @@ # make -f ./test_137-wrapper DELAY=90 DELAY ?= 1 +TEST=./test_137 +GPG=[[ `gpg2 --decrypt test.gpg | wc -c` -gt 0 ]] + test: echo "DELAY=${DELAY}" gpg2 --version git describe --long echo "start" - ./test_137 -s + ${TEST} sleep ${DELAY} - [[ `gpg2 --decrypt test.gpg | wc -c` -gt 0 ]] + ${GPG} sleep ${DELAY} - ./test_137 -s + ${TEST} sleep ${DELAY} - [[ `gpg2 --decrypt test.gpg | wc -c` -gt 0 ]] + ${GPG} sleep ${DELAY} - ./test_137 -s + ${TEST} .PHONY: test |