aboutsummaryrefslogtreecommitdiff
path: root/tests/simple.sh
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-09-28 15:39:11 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-09-28 15:39:11 +0000
commit10202bbf29128a5ef639388e4613111104385955 (patch)
tree6b6162b192539476c9caf24e0be06c12e33820af /tests/simple.sh
parent67cc356bb38061ea4f696ed60e1dca29536f9a33 (diff)
parent649c465873b20465590d3934fdc0672e4b6b826a (diff)
Merge remote-tracking branch 'upstream/master' into ca-floating-upstream
Diffstat (limited to 'tests/simple.sh')
-rw-r--r--tests/simple.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/simple.sh b/tests/simple.sh
index 37631b648..15bd2bd16 100644
--- a/tests/simple.sh
+++ b/tests/simple.sh
@@ -10,13 +10,15 @@ outPath=$(nix-store -rvv "$drvPath")
echo "output path is $outPath"
+(! [ -w $outPath ])
+
text=$(cat "$outPath"/hello)
if test "$text" != "Hello World!"; then exit 1; fi
# Directed delete: $outPath is not reachable from a root, so it should
# be deleteable.
nix-store --delete $outPath
-if test -e $outPath/hello; then false; fi
+(! [ -e $outPath/hello ])
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