* src/ltltest/reduc.test: Use test a = b' not test a == b'.

Reported by <Denis.Poitrenaud@lip6.fr> (failure on Cygwin).
This commit is contained in:
Alexandre Duret-Lutz 2004-07-22 13:53:51 +00:00
parent df75d35a5a
commit 3ec8a99b24
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-07-22 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/ltltest/reduc.test: Use `test a = b' not `test a == b'.
Reported by <Denis.Poitrenaud@lip6.fr> (failure on Cygwin).
2004-07-20 Alexandre Duret-Lutz <adl@src.lip6.fr> 2004-07-20 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/tgbatest/defs.in (VALGRIND): Specify --tool=memcheck for * src/tgbatest/defs.in (VALGRIND): Specify --tool=memcheck for

View file

@ -36,7 +36,7 @@ for opt in 0 1 2 3; do
./reduc $opt "$f" >> result.data ./reduc $opt "$f" >> result.data
done done
test $? == 0 || exit 1 test $? = 0 || exit 1
perl -ne 'BEGIN { $sum1 = 0; $sum2 = 0; } perl -ne 'BEGIN { $sum1 = 0; $sum2 = 0; }
/^(\d+)\s+(\d+)/; /^(\d+)\s+(\d+)/;