diff options
author | Robert Hensing <robert@roberthensing.nl> | 2021-03-24 14:44:20 +0100 |
---|---|---|
committer | Robert Hensing <robert@roberthensing.nl> | 2021-03-31 08:30:12 +0200 |
commit | c3090bc6fdf6e052cd4c56fce6aeb11ddeb5dd6f (patch) | |
tree | 06a6f2567c1968c0f960db4f90348e35edd02bca /tests/build-remote.sh | |
parent | f66fb5fb5b1478a5da39d0e9cc0f835272199c5d (diff) |
tests/*: show when tests are skipped
Diffstat (limited to 'tests/build-remote.sh')
-rw-r--r-- | tests/build-remote.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/build-remote.sh b/tests/build-remote.sh index 04848e4b5..70f82e939 100644 --- a/tests/build-remote.sh +++ b/tests/build-remote.sh @@ -1,5 +1,5 @@ -if ! canUseSandbox; then exit; fi -if ! [[ $busybox =~ busybox ]]; then exit; fi +if ! canUseSandbox; then exit 99; fi +if ! [[ $busybox =~ busybox ]]; then exit 99; fi unset NIX_STORE_DIR unset NIX_STATE_DIR |