hide all output

This commit is contained in:
Thomas Levine 2012-10-10 14:30:34 -04:00
parent 59b3497af1
commit f79da9215c

6
urchin
View File

@ -18,9 +18,9 @@ recurse() {
stdout_file=/tmp/urchin_stdout
# Run the test
[ -f setup ] && . ./setup
./"$potential_test" > $stdout_file
[ -f teardown ] && [ -x teardown ] && ./teardown
[ -f setup ] && . ./setup &>> $stdout_file
./"$potential_test" &>> $stdout_file
[ -f teardown ] && [ -x teardown ] && ./teardown &>> $stdout_file
if [ "$?" = '0' ]
then