blob: acf9390628d62f416882be2cdd3c2dc0a70b1460 (
plain) (
blame)
1
2
3
4
5
6
7
|
mkdir $out
test "$firstOutput $secondOutput" = "$allOutputs"
test "$defaultOutput" = "$firstOutput"
test "$(cat $firstOutput/file)" = "second"
test "$(cat $secondOutput/file)" = "first"
echo "success" > $out/file
|