mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-25 15:26:17 +02:00
tests: add a test for command line ordering
This commit is contained in:
parent
5ed1884875
commit
1fb43d1eee
2 changed files with 24 additions and 0 deletions
|
@ -23,4 +23,20 @@ with import ./config.nix;
|
||||||
chmod +x $dev/bin/hello2
|
chmod +x $dev/bin/hello2
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
salve-mundi = mkDerivation {
|
||||||
|
name = "salve-mundi";
|
||||||
|
outputs = [ "out" ];
|
||||||
|
meta.outputsToInstall = [ "out" ];
|
||||||
|
buildCommand =
|
||||||
|
''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
|
||||||
|
cat > $out/bin/hello <<EOF
|
||||||
|
#! ${shell}
|
||||||
|
echo "Salve Mundi from $out/bin/hello"
|
||||||
|
EOF
|
||||||
|
chmod +x $out/bin/hello
|
||||||
|
'';
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,14 @@ nix shell -f shell-hello.nix hello -c hello NixOS | grep 'Hello NixOS'
|
||||||
nix shell -f shell-hello.nix hello^dev -c hello2 | grep 'Hello2'
|
nix shell -f shell-hello.nix hello^dev -c hello2 | grep 'Hello2'
|
||||||
nix shell -f shell-hello.nix 'hello^*' -c hello2 | grep 'Hello2'
|
nix shell -f shell-hello.nix 'hello^*' -c hello2 | grep 'Hello2'
|
||||||
|
|
||||||
|
|
||||||
|
if isDaemonNewer "2.20.0pre20231220"; then
|
||||||
|
# Test that command line attribute ordering is reflected in the PATH
|
||||||
|
# https://github.com/NixOS/nix/issues/7905
|
||||||
|
nix shell -f shell-hello.nix hello salve-mundi -c hello | grep 'Hello World'
|
||||||
|
nix shell -f shell-hello.nix salve-mundi hello -c hello | grep 'Salve Mundi'
|
||||||
|
fi
|
||||||
|
|
||||||
requireSandboxSupport
|
requireSandboxSupport
|
||||||
|
|
||||||
chmod -R u+w $TEST_ROOT/store0 || true
|
chmod -R u+w $TEST_ROOT/store0 || true
|
||||||
|
|
Loading…
Reference in a new issue