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