1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-24 22:11:15 +02:00
nix/tests/fixed.sh

18 lines
430 B
Bash

source common.sh
drvs=$($nixinstantiate fixed.nix -A good)
echo $drvs
$nixstore -r $drvs
drvs=$($nixinstantiate fixed.nix -A good2)
echo $drvs
$nixstore -r $drvs
drvs=$($nixinstantiate fixed.nix -A bad)
echo $drvs
if $nixstore -r $drvs; then false; fi
if $nixinstantiate fixed.nix -A reallyBad; then false; fi
# While we're at it, check attribute selection a bit more.
test $($nixinstantiate fixed.nix -A good.1 | wc -l) = 1