summaryrefslogtreecommitdiff
path: root/test-suite/check
diff options
context:
space:
mode:
authorGravatar Stephane Glondu <steph@glondu.net>2008-08-08 13:18:42 +0200
committerGravatar Stephane Glondu <steph@glondu.net>2008-08-08 13:18:42 +0200
commit870075f34dd9fa5792bfbf413afd3b96f17e76a0 (patch)
tree0c647056de1832cf1dba5ba58758b9121418e4be /test-suite/check
parenta0cfa4f118023d35b767a999d5a2ac4b082857b4 (diff)
Imported Upstream version 8.2~beta4+dfsgupstream/8.2.beta4+dfsg
Diffstat (limited to 'test-suite/check')
-rwxr-xr-xtest-suite/check2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/check b/test-suite/check
index f2307d40..571e7a67 100755
--- a/test-suite/check
+++ b/test-suite/check
@@ -54,7 +54,7 @@ test_output() {
tmpoutput=`mktemp /tmp/coqcheck.XXXXXX`
$command $f 2>&1 | grep -v "Welcome to Coq" | grep -v "Skipping rcfile loading" > $tmpoutput
foutput=`dirname $f`/`basename $f .v`.out
- diff $tmpoutput $foutput >& /dev/null
+ diff $tmpoutput $foutput > /dev/null 2>&1
if [ $? = 0 ]; then
echo "Ok"
nbtestsok=`expr $nbtestsok + 1`