diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-03-16 19:13:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-16 19:13:03 -0400 |
commit | acd707acca8acbc276af5181c7724c70a6a69ad5 (patch) | |
tree | 1bb94f3b5aa283e9fd2c294a7bbd458eb6ba3950 /tests/build-remote.sh | |
parent | 7f46ebcf90432a54f5fdec1931d87e5130e68190 (diff) | |
parent | bfb9eb87fe98f96969188df9df866e15800bd55b (diff) |
Merge pull request #8057 from obsidiansystems/slight-test-cleanup
Cleanup test skipping
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 6da128d1b..78e12b477 100644 --- a/tests/build-remote.sh +++ b/tests/build-remote.sh @@ -1,5 +1,5 @@ -if ! canUseSandbox; then exit 99; fi -if ! [[ $busybox =~ busybox ]]; then exit 99; fi +requireSandboxSupport +[[ $busybox =~ busybox ]] || skipTest "no busybox" unset NIX_STORE_DIR unset NIX_STATE_DIR |