diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-10-19T13·17+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-10-19T13·19+0200 |
commit | af3db853fa273b44ccffbbd62357a0451ecb6725 (patch) | |
tree | 61a4c7456fc95d1987520890a420bab307e94213 /tests/simple.sh | |
parent | 29727ff944be7e00c31ad95d0958e6fabc7d12a4 (diff) |
Handle $TMPDIR ending with a slash
This caused the gc test to fail on Darwin.
Diffstat (limited to 'tests/simple.sh')
-rw-r--r-- | tests/simple.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/simple.sh b/tests/simple.sh index 8f9d782a6c81..37631b648c67 100644 --- a/tests/simple.sh +++ b/tests/simple.sh @@ -18,7 +18,7 @@ if test "$text" != "Hello World!"; then exit 1; fi nix-store --delete $outPath if test -e $outPath/hello; then false; fi -outPath="$(NIX_REMOTE=local?store=/foo\&real=$TMPDIR/real-store nix-instantiate --readonly-mode hash-check.nix)" +outPath="$(NIX_REMOTE=local?store=/foo\&real=$TEST_ROOT/real-store nix-instantiate --readonly-mode hash-check.nix)" if test "$outPath" != "/foo/lfy1s6ca46rm5r6w4gg9hc0axiakjcnm-dependencies.drv"; then echo "hashDerivationModulo appears broken, got $outPath" exit 1 |