Skip to content

Commit 76e9d2b

Browse files
committed
Fix Testrunner path for Cygwin x86_64
Signed-off-by: FrancisANDRE <[email protected]>
1 parent b7f6870 commit 76e9d2b

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

build/script/runtests.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ components=`cat $POCO_BASE/components`
1818

1919
if [ "$OSNAME" = "" ] ; then
2020
OSNAME=`uname`
21+
case $OSNAME in
22+
CYGWIN*)
23+
OSNAME=CYGWIN
24+
TESTRUNNER=$TESTRUNNER.exe
25+
;;
26+
MINGW*)
27+
OSNAME=MinGW ;;
28+
esac
2129
fi
2230
if [ "$OSARCH" = "" ] ; then
2331
OSARCH=`uname -m | tr ' /' _-`

0 commit comments

Comments
 (0)