aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorherbelin2004-11-28 18:21:22 +0000
committerherbelin2004-11-28 18:21:22 +0000
commit9088aa0d84ea5f4cac8c185f3e9ea51686a66980 (patch)
tree6c1d26465f5eea1e43d2d20ffccd0967e855eecc /test-suite
parentd1aa8bd1fb7d1e8a8680fc6397d16e31c0f82666 (diff)
Suppression bruit perl
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@6371 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite')
-rwxr-xr-xtest-suite/check7
1 files changed, 2 insertions, 5 deletions
diff --git a/test-suite/check b/test-suite/check
index 1c7822d104..5bc034aec7 100755
--- a/test-suite/check
+++ b/test-suite/check
@@ -9,7 +9,7 @@ else
fi
if [ "$1" = -byte ]; then
- command="../bin/coqtop.byte -q -batch -load-vernac-source"
+ command="../bin/coqtop.byte -no-vm -q -batch -load-vernac-source"
else
command="../bin/coqtop -q -batch -load-vernac-source"
fi
@@ -99,7 +99,7 @@ test_parser() {
foutput=`dirname $f`/`basename $f .v`.out
echo "parse_file 1 \"$f\"" | ../bin/parser > $tmpoutput 2>&1
perl -ne 'if(/Starting.*Parser Loop/){$printit = 1};print if $printit' \
- $tmpoutput | grep -i error > /dev/null
+ $tmpoutput 2>&1 | grep -i error > /dev/null
if [ $? = 0 ] ; then
echo "Error! (unexpected output)"
else
@@ -124,6 +124,3 @@ test_parser parser
pourcentage=`expr 100 \* $nbtestsok / $nbtests`
echo
echo "$nbtestsok tests passed over $nbtests, i.e. $pourcentage %"
-
-
-