2017-05-02 13:09:35 +00:00
|
|
|
source common.sh
|
|
|
|
|
2021-07-26 04:54:55 +00:00
|
|
|
needLocalStore "the sandbox only runs on the builder side, so it makes no sense to test it with the daemon"
|
|
|
|
|
2017-05-02 13:09:35 +00:00
|
|
|
clearStore
|
|
|
|
|
2021-03-24 13:44:20 +00:00
|
|
|
if ! canUseSandbox; then exit 99; fi
|
2017-05-02 13:09:35 +00:00
|
|
|
|
|
|
|
# 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?).
|
2021-03-24 13:44:20 +00:00
|
|
|
if [[ ! $SHELL =~ /nix/store ]]; then exit 99; fi
|
2017-05-02 13:09:35 +00:00
|
|
|
|
|
|
|
chmod -R u+w $TEST_ROOT/store0 || true
|
|
|
|
rm -rf $TEST_ROOT/store0
|
|
|
|
|
|
|
|
export NIX_STORE_DIR=/my/store
|
2017-10-24 13:16:18 +00:00
|
|
|
export NIX_REMOTE=$TEST_ROOT/store0
|
2017-05-02 13:09:35 +00:00
|
|
|
|
2017-11-20 16:50:49 +00:00
|
|
|
outPath=$(nix-build dependencies.nix --no-out-link --sandbox-paths /nix/store)
|
2017-05-02 13:09:35 +00:00
|
|
|
|
|
|
|
[[ $outPath =~ /my/store/.*-dependencies ]]
|
|
|
|
|
|
|
|
nix path-info -r $outPath | grep input-2
|
|
|
|
|
2020-07-24 18:42:24 +00:00
|
|
|
nix store ls -R -l $outPath | grep foobar
|
2017-05-02 13:09:35 +00:00
|
|
|
|
2020-07-24 18:42:24 +00:00
|
|
|
nix store cat $outPath/foobar | grep FOOBAR
|
2019-05-12 14:46:21 +00:00
|
|
|
|
|
|
|
# Test --check without hash rewriting.
|
|
|
|
nix-build dependencies.nix --no-out-link --check --sandbox-paths /nix/store
|
2019-02-17 19:34:31 +00:00
|
|
|
|
|
|
|
# Test that sandboxed builds with --check and -K can move .check directory to store
|
|
|
|
nix-build check.nix -A nondeterministic --sandbox-paths /nix/store --no-out-link
|
|
|
|
|
|
|
|
(! nix-build check.nix -A nondeterministic --sandbox-paths /nix/store --no-out-link --check -K 2> $TEST_ROOT/log)
|
|
|
|
if grep -q 'error: renaming' $TEST_ROOT/log; then false; fi
|
|
|
|
grep -q 'may not be deterministic' $TEST_ROOT/log
|