2006-03-01 18:26:21 +00:00
|
|
|
source common.sh
|
|
|
|
|
2007-08-28 09:21:47 +00:00
|
|
|
clearStore
|
|
|
|
|
2007-09-11 13:32:04 +00:00
|
|
|
export IMPURE_VAR1=foo
|
|
|
|
export IMPURE_VAR2=bar
|
|
|
|
|
2007-08-28 09:21:47 +00:00
|
|
|
echo 'testing good...'
|
2006-03-01 18:26:21 +00:00
|
|
|
drvs=$($nixinstantiate fixed.nix -A good)
|
|
|
|
echo $drvs
|
|
|
|
$nixstore -r $drvs
|
|
|
|
|
2007-08-28 09:21:47 +00:00
|
|
|
echo 'testing good2...'
|
2006-03-01 18:26:21 +00:00
|
|
|
drvs=$($nixinstantiate fixed.nix -A good2)
|
|
|
|
echo $drvs
|
|
|
|
$nixstore -r $drvs
|
|
|
|
|
2007-08-28 09:21:47 +00:00
|
|
|
echo 'testing bad...'
|
2006-03-01 18:26:21 +00:00
|
|
|
drvs=$($nixinstantiate fixed.nix -A bad)
|
|
|
|
echo $drvs
|
|
|
|
if $nixstore -r $drvs; then false; fi
|
|
|
|
|
2007-08-28 09:21:47 +00:00
|
|
|
echo 'testing reallyBad...'
|
2006-03-01 18:26:21 +00:00
|
|
|
if $nixinstantiate fixed.nix -A reallyBad; then false; fi
|
|
|
|
|
|
|
|
# While we're at it, check attribute selection a bit more.
|
2007-08-28 09:21:47 +00:00
|
|
|
echo 'testing attribute selection...'
|
2006-03-01 18:26:21 +00:00
|
|
|
test $($nixinstantiate fixed.nix -A good.1 | wc -l) = 1
|
2007-08-28 09:21:47 +00:00
|
|
|
|
|
|
|
# Test parallel builds of derivations that produce the same output.
|
|
|
|
# Only one should run at the same time.
|
|
|
|
echo 'testing parallelSame...'
|
|
|
|
clearStore
|
|
|
|
drvs=$($nixinstantiate fixed.nix -A parallelSame)
|
|
|
|
echo $drvs
|
|
|
|
$nixstore -r $drvs -j2
|