tests/*: show when tests are skipped

This commit is contained in:
Robert Hensing 2021-03-24 14:44:20 +01:00
parent f66fb5fb5b
commit c3090bc6fd
5 changed files with 7 additions and 7 deletions

View file

@ -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

View file

@ -4,7 +4,7 @@ case $system in
*linux*)
;;
*)
exit 0;
exit 99;
esac
set -m # enable job control, needed for kill

View file

@ -2,13 +2,13 @@ source common.sh
clearStore
if ! canUseSandbox; then exit; fi
if ! canUseSandbox; then exit 99; fi
# Note: we need to bind-mount $SHELL into the chroot. Currently we
# only support the case where $SHELL is in the Nix store, because
# otherwise things get complicated (e.g. if it's in /bin, do we need
# /lib as well?).
if [[ ! $SHELL =~ /nix/store ]]; then exit; fi
if [[ ! $SHELL =~ /nix/store ]]; then exit 99; fi
chmod -R u+w $TEST_ROOT/store0 || true
rm -rf $TEST_ROOT/store0

View file

@ -1,7 +1,7 @@
source common.sh
# FIXME
if [[ $(uname) != Linux ]]; then exit; fi
if [[ $(uname) != Linux ]]; then exit 99; fi
clearStore

View file

@ -6,7 +6,7 @@ clearCache
nix shell -f shell-hello.nix hello -c hello | grep 'Hello World'
nix shell -f shell-hello.nix hello -c hello NixOS | grep 'Hello NixOS'
if ! canUseSandbox; then exit; fi
if ! canUseSandbox; then exit 99; fi
chmod -R u+w $TEST_ROOT/store0 || true
rm -rf $TEST_ROOT/store0