From fd38d03096803bf6705e95f4b389fac3dee1c62a Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sat, 17 Oct 2009 17:12:19 -0700 Subject: [PATCH] Fix tests/formats/num-out.sh test on Mingw. inexactify needs an .exe extension on Mingw. --- tests/formats/num-out.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/formats/num-out.sh b/tests/formats/num-out.sh index f9a25c5d0e..2d0932f7a8 100755 --- a/tests/formats/num-out.sh +++ b/tests/formats/num-out.sh @@ -50,7 +50,7 @@ if [ $? -ne 0 ] ; then no_result ; fi echo -n . activity="inexactify results" -$top_builddir/tests/formats/inexactify < output.txt > output.inexact +$top_builddir/tests/formats/inexactify$EXEEXT < output.txt > output.inexact if [ $? -ne 0 ] ; then no_result ; fi echo -n . @@ -65,7 +65,7 @@ if [ $? -ne 0 ] ; then no_result ; fi echo -n . activity="inexactify expected results" -$top_builddir/tests/formats/inexactify < expected.txt > expected.inexact +$top_builddir/tests/formats/inexactify$EXEEXT < expected.txt > expected.inexact if [ $? -ne 0 ] ; then no_result ; fi echo -n . -- 2.30.2