Script fixes.

Indent correctly, don't nag about nonexisting files and add a carriage
return.
This commit is contained in:
Andreas Wendleder
2011-07-08 17:01:28 +02:00
committed by Matt Pharr
parent ae6ee3ea46
commit 7058ca1aaf

View File

@@ -44,7 +44,7 @@ if [[ "$1" > 0 ]]; then
echo echo
fi fi
fi fi
/bin/rm $bc /bin/rm -f $bc
done done
else else
echo Running all correctness tests echo Running all correctness tests
@@ -68,10 +68,10 @@ else
echo echo
fi fi
fi fi
/bin/rm $bc /bin/rm -f $bc
done done
echo Running failing tests echo -e "\nRunning failing tests"
for i in failing_tests/*.ispc; do for i in failing_tests/*.ispc; do
(ispc -O2 $i -woff -o - --emit-llvm | ispc_test -) 2>/dev/null 1>/dev/null (ispc -O2 $i -woff -o - --emit-llvm | ispc_test -) 2>/dev/null 1>/dev/null
if [[ $? == 0 ]]; then if [[ $? == 0 ]]; then