2006-03-01 12:15:33 +00:00
|
|
|
source common.sh
|
|
|
|
|
2011-10-10 21:32:34 +00:00
|
|
|
drvPath=$(nix-instantiate simple.nix)
|
2004-05-04 12:15:30 +00:00
|
|
|
|
2011-10-10 21:32:34 +00:00
|
|
|
test "$(nix-store -q --binding system "$drvPath")" = "$system"
|
2006-03-01 15:46:22 +00:00
|
|
|
|
2005-02-09 12:57:13 +00:00
|
|
|
echo "derivation is $drvPath"
|
2004-05-04 12:15:30 +00:00
|
|
|
|
2011-10-10 21:32:34 +00:00
|
|
|
outPath=$(nix-store -rvv "$drvPath")
|
2004-05-04 12:15:30 +00:00
|
|
|
|
|
|
|
echo "output path is $outPath"
|
|
|
|
|
2020-09-23 17:09:58 +00:00
|
|
|
(! [ -w $outPath ])
|
|
|
|
|
2004-05-04 12:15:30 +00:00
|
|
|
text=$(cat "$outPath"/hello)
|
|
|
|
if test "$text" != "Hello World!"; then exit 1; fi
|
2006-03-01 14:26:03 +00:00
|
|
|
|
|
|
|
# Directed delete: $outPath is not reachable from a root, so it should
|
|
|
|
# be deleteable.
|
2011-10-10 21:32:34 +00:00
|
|
|
nix-store --delete $outPath
|
2020-09-23 17:09:58 +00:00
|
|
|
(! [ -e $outPath/hello ])
|
2006-07-19 15:49:29 +00:00
|
|
|
|
2016-10-19 13:17:39 +00:00
|
|
|
outPath="$(NIX_REMOTE=local?store=/foo\&real=$TEST_ROOT/real-store nix-instantiate --readonly-mode hash-check.nix)"
|
2007-12-30 23:59:10 +00:00
|
|
|
if test "$outPath" != "/foo/lfy1s6ca46rm5r6w4gg9hc0axiakjcnm-dependencies.drv"; then
|
|
|
|
echo "hashDerivationModulo appears broken, got $outPath"
|
|
|
|
exit 1
|
2006-07-19 15:49:29 +00:00
|
|
|
fi
|
2022-01-06 00:20:12 +00:00
|
|
|
|
|
|
|
outPath="$(NIX_REMOTE=local?store=/foo\&real=$TEST_ROOT/real-store nix-instantiate --readonly-mode big-derivation-attr.nix)"
|
|
|
|
if test "$outPath" != "/foo/xxiwa5zlaajv6xdjynf9yym9g319d6mn-big-derivation-attr.drv"; then
|
|
|
|
echo "big-derivation-attr.nix hash appears broken, got $outPath. Memory corruption in large drv attr?"
|
|
|
|
exit 1
|
|
|
|
fi
|