From 6135b696a5c8e725fdaa015daf5080a67edd6a5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Pottier?= Date: Fri, 5 Dec 2014 15:21:35 +0100 Subject: [PATCH] Fix test.sh. --- quicktest/test.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/quicktest/test.sh b/quicktest/test.sh index 8cc70639..86f19f8d 100755 --- a/quicktest/test.sh +++ b/quicktest/test.sh @@ -11,7 +11,8 @@ # Build the parser with the code back-end and run it. echo "Building and running (code)..." -make -C $CALC MENHIR="$MENHIR --trace" clean all >/dev/null +make -C $CALC MENHIR="$MENHIR --trace" clean >/dev/null +make -C $CALC MENHIR="$MENHIR --trace" >/dev/null for f in $DATA/*.real.in ; do b=${f%.in} $CALC/calc < $f > $b.code.out 2> $b.code.err @@ -19,7 +20,8 @@ done # Build the parser with the table back-end and run it. echo "Building and running (table)..." -make -C $CALC MENHIR="$MENHIR --trace --table" clean all >/dev/null +make -C $CALC MENHIR="$MENHIR --trace --table" clean >/dev/null +make -C $CALC MENHIR="$MENHIR --trace --table" >/dev/null for f in $DATA/*.real.in ; do b=${f%.in} $CALC/calc < $f > $b.table.out 2> $b.table.err -- GitLab