summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/guix-environment-container.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/guix-environment-container.sh b/tests/guix-environment-container.sh
index 141fd160a7d..8b6f7cd38f5 100644
--- a/tests/guix-environment-container.sh
+++ b/tests/guix-environment-container.sh
@@ -69,7 +69,8 @@ guix environment --container --ad-hoc --bootstrap guile-bootstrap \
69cat "$tmpdir/mounts" 69cat "$tmpdir/mounts"
70test `wc -l < $tmpdir/mounts` -eq 3 70test `wc -l < $tmpdir/mounts` -eq 3
71 71
72grep -e "$PWD$" $tmpdir/mounts # current directory 72current_dir="`cd $PWD; pwd -P`"
73grep -e "$current_dir$" $tmpdir/mounts # current directory
73grep $(guix build guile-bootstrap) $tmpdir/mounts 74grep $(guix build guile-bootstrap) $tmpdir/mounts
74grep -e "$NIX_STORE_DIR/.*-bash" $tmpdir/mounts # bootstrap bash 75grep -e "$NIX_STORE_DIR/.*-bash" $tmpdir/mounts # bootstrap bash
75 76