8f28a3ba25
This currently fails. Yay test-driven development!
15 lines
279 B
Bash
15 lines
279 B
Bash
source common.sh
|
|
|
|
echo "Testing multiple outputs..."
|
|
|
|
drvPath=$($nixinstantiate multiple-outputs.nix)
|
|
|
|
echo "derivation is $drvPath"
|
|
|
|
outPath=$($nixstore -rvv "$drvPath")
|
|
|
|
echo "output path is $outPath"
|
|
|
|
text=$(cat "$outPath"/file)
|
|
if test "$text" != "success"; then exit 1; fi
|
|
|