From e7591ca9de3693b73c3b2a529c62ea6dfe2f7d8b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 22 Mar 2009 22:08:19 +0000 Subject: [PATCH] correct syntax (patterns need to be escaped) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@59748 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/runtests.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtests.bat b/tests/runtests.bat index 092285de69..a8fda31588 100644 --- a/tests/runtests.bat +++ b/tests/runtests.bat @@ -6,7 +6,7 @@ REM which is required by Buildbot to recognize failures. REM $Id: runtests.bat 59695 2009-03-21 13:49:20Z FM $ rem set the path for running the tests if they use DLL build of wx -for /d %%x in (..\lib\*_dll) do @PATH=%x;%PATH% +for /d %%x in ("..\lib\*_dll") do @set PATH=%%x;%PATH% set failure=0