summaryrefslogtreecommitdiff
path: root/tests/testrunner.sh
diff options
context:
space:
mode:
authorJuerg Billeter <j@bitron.ch>2008-01-23 09:58:00 +0000
committerJürg Billeter <juergbi@src.gnome.org>2008-01-23 09:58:00 +0000
commitd8d589fb944d1991dd9feca866b90dac3ac52377 (patch)
treedd37a8b3b61b3cefae5597d84d20c7308d352b88 /tests/testrunner.sh
parent3e91b3e9c9378aa981a7a56b6f7c38e1c127533f (diff)
downloadvala-d8d589fb944d1991dd9feca866b90dac3ac52377.tar.gz
honor EXEEXT to fix tests on Cygwin and MinGW, patch by Yaakov Selkowitz,
2008-01-23 Juerg Billeter <j@bitron.ch> * tests/Makefile.am, tests/testrunner.sh: honor EXEEXT to fix tests on Cygwin and MinGW, patch by Yaakov Selkowitz, fixes bug 511438 svn path=/trunk/; revision=893
Diffstat (limited to 'tests/testrunner.sh')
-rwxr-xr-xtests/testrunner.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/testrunner.sh b/tests/testrunner.sh
index 7743c6ede..30d609b8b 100755
--- a/tests/testrunner.sh
+++ b/tests/testrunner.sh
@@ -25,6 +25,7 @@ topbuilddir=$builddir/..
srcdir=`dirname $0`
topsrcdir=$srcdir/..
vapidir=$topsrcdir/vapi
+exe=$EXEEXT
export G_DEBUG=fatal_warnings
@@ -51,7 +52,7 @@ do
fi
if ./$testbuild | tee $testbuild.err | cmp -s $testsrc.exp
then
- rm $testbuild.c $testbuild.h $testbuild $testbuild.err
+ rm $testbuild.c $testbuild.h $testbuild$exe $testbuild.err
else
CODE=1
fi