mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 16:26:18 +02:00
Fix texted hash output test to work when testing daemon
Need to get experiment features to daemon like with the other tests.
This commit is contained in:
parent
9af9ab4212
commit
d6e0c511ec
1 changed files with 7 additions and 4 deletions
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
source common.sh
|
source common.sh
|
||||||
|
|
||||||
|
# Globally enable the ca derivations experimental flag
|
||||||
|
sed -i 's/experimental-features = .*/& ca-derivations ca-references/' "$NIX_CONF_DIR/nix.conf"
|
||||||
|
|
||||||
# In the corresponding nix file, we have two derivations: the first, named root,
|
# In the corresponding nix file, we have two derivations: the first, named root,
|
||||||
# is a normal recursive derivation, while the second, named dependent, has the
|
# is a normal recursive derivation, while the second, named dependent, has the
|
||||||
# new outputHashMode "text". Note that in "dependent", we don't refer to the
|
# new outputHashMode "text". Note that in "dependent", we don't refer to the
|
||||||
|
@ -13,14 +16,14 @@ source common.sh
|
||||||
# - check that the path of the output coincides with that of the original derivation
|
# - check that the path of the output coincides with that of the original derivation
|
||||||
|
|
||||||
drv=$(nix-instantiate --experimental-features ca-derivations ./text-hashed-output.nix -A root)
|
drv=$(nix-instantiate --experimental-features ca-derivations ./text-hashed-output.nix -A root)
|
||||||
nix --experimental-features 'nix-command ca-derivations' show-derivation --derivation "$drv"
|
nix show-derivation --derivation "$drv"
|
||||||
|
|
||||||
drvDep=$(nix-instantiate --experimental-features ca-derivations ./text-hashed-output.nix -A dependent)
|
drvDep=$(nix-instantiate --experimental-features ca-derivations ./text-hashed-output.nix -A dependent)
|
||||||
nix --experimental-features 'nix-command ca-derivations' show-derivation --derivation "$drvDep"
|
nix show-derivation --derivation "$drvDep"
|
||||||
|
|
||||||
out1=$(nix-build --experimental-features ca-derivations ./text-hashed-output.nix -A dependent --no-out-link)
|
out1=$(nix-build --experimental-features ca-derivations ./text-hashed-output.nix -A dependent --no-out-link)
|
||||||
|
|
||||||
nix --experimental-features 'nix-command ca-derivations' path-info $drv --derivation --json | jq
|
nix path-info $drv --derivation --json | jq
|
||||||
nix --experimental-features 'nix-command ca-derivations' path-info $out1 --derivation --json | jq
|
nix path-info $out1 --derivation --json | jq
|
||||||
|
|
||||||
test $out1 == $drv
|
test $out1 == $drv
|
||||||
|
|
Loading…
Reference in a new issue