diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-08-13T13·15+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-08-13T13·15+0000 |
commit | 550ba9ebb4b1b2415c9930879cfa6937f7fa916a (patch) | |
tree | 3c15b0a01c59be162a17bb003d09fbd80ba01aa1 /tests/simple.builder.sh | |
parent | 3757ee589f46a401fdacaa2126e6bf4902eee23d (diff) |
* Fix the tests.
Diffstat (limited to 'tests/simple.builder.sh')
-rw-r--r-- | tests/simple.builder.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/simple.builder.sh b/tests/simple.builder.sh index 536faec14915..569e8ca88c1e 100644 --- a/tests/simple.builder.sh +++ b/tests/simple.builder.sh @@ -1,7 +1,7 @@ echo "PATH=$PATH" # Verify that the PATH is empty. -if mkdir foo; then exit 1; fi +if mkdir foo 2> /dev/null; then exit 1; fi # Set a PATH (!!! impure). export PATH=$goodPath |