aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/check
diff options
context:
space:
mode:
authorGravatar glondu <glondu@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-07-28 12:00:28 +0000
committerGravatar glondu <glondu@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-07-28 12:00:28 +0000
commit334df9c148cdefa9cc508ea0a1230d8e9606ee30 (patch)
tree3ab3e68522e8751e748a2c88e68aeae9c6a88dca /test-suite/check
parentf5188e6e5b1152b3084db37f6ab1c5cba694242c (diff)
Fix bashism in test-suite/check
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11284 85f007b7-540e-0410-9357-904b9bb8a0f7
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 f2307d405..571e7a67a 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`