diff options
Diffstat (limited to 'tests/multiple-outputs.b.builder.sh')
-rw-r--r-- | tests/multiple-outputs.b.builder.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/multiple-outputs.b.builder.sh b/tests/multiple-outputs.b.builder.sh new file mode 100644 index 000000000000..acf9390628d6 --- /dev/null +++ b/tests/multiple-outputs.b.builder.sh @@ -0,0 +1,7 @@ +mkdir $out +test "$firstOutput $secondOutput" = "$allOutputs" +test "$defaultOutput" = "$firstOutput" +test "$(cat $firstOutput/file)" = "second" +test "$(cat $secondOutput/file)" = "first" + +echo "success" > $out/file |