diff options
author | Juerg Billeter <j@bitron.ch> | 2008-01-23 09:58:00 +0000 |
---|---|---|
committer | Jürg Billeter <juergbi@src.gnome.org> | 2008-01-23 09:58:00 +0000 |
commit | d8d589fb944d1991dd9feca866b90dac3ac52377 (patch) | |
tree | dd37a8b3b61b3cefae5597d84d20c7308d352b88 /tests/testrunner.sh | |
parent | 3e91b3e9c9378aa981a7a56b6f7c38e1c127533f (diff) | |
download | vala-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-x | tests/testrunner.sh | 3 |
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 |