diff options
Diffstat (limited to 'tests/functional/simple.builder.sh')
-rw-r--r-- | tests/functional/simple.builder.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/functional/simple.builder.sh b/tests/functional/simple.builder.sh new file mode 100644 index 000000000..569e8ca88 --- /dev/null +++ b/tests/functional/simple.builder.sh @@ -0,0 +1,11 @@ +echo "PATH=$PATH" + +# Verify that the PATH is empty. +if mkdir foo 2> /dev/null; then exit 1; fi + +# Set a PATH (!!! impure). +export PATH=$goodPath + +mkdir $out + +echo "Hello World!" > $out/hello
\ No newline at end of file |