summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlo Zancanaro <carlo@carlo-laptop>2012-10-27 13:37:57 +1100
committerCarlo Zancanaro <carlo@carlo-laptop>2012-10-27 13:37:57 +1100
commit97a9582ec8928624cd78146ae060aadfd92a9b22 (patch)
tree3a885f762762a7024042c78e60964c61e06d7a74
parenta3860a4cd6ca6a1ee664634ea472b5487535b2b5 (diff)
Don't show stderr in tests. That's just annoying.
-rw-r--r--impl/test/run2
1 files changed, 1 insertions, 1 deletions
diff --git a/impl/test/run b/impl/test/run
index 826bbde..169edda 100644
--- a/impl/test/run
+++ b/impl/test/run
@@ -7,7 +7,7 @@ FAILED=0
echo "Testing binary: $1 in directory $DIR"
while [ -f "$DIR/$NUM.eqns" ]
do
- OUTPUT=$(timeout 5s $1 "$DIR/$NUM.eqns")
+ OUTPUT=$(timeout 5s $1 "$DIR/$NUM.eqns" 2> /dev/null)
if [ $? -eq 124 ]; then
OUTPUT="did not terminate"
fi