aboutsummaryrefslogtreecommitdiff
path: root/test.bat
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-02-17 14:50:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-02-17 14:50:11 +0200
commit5aaec95bbfb066130ecac03eece3813cee61a3e1 (patch)
tree87c24d1b6afe613c31076cf7b417a7e2b7188994 /test.bat
parent29e7db53cb1db2c4d743d4756b8ac3fee28ab8ea (diff)
Add test infrastructure for boost profile
Diffstat (limited to 'test.bat')
-rw-r--r--test.bat5
1 files changed, 3 insertions, 2 deletions
diff --git a/test.bat b/test.bat
index c3db132..b672def 100644
--- a/test.bat
+++ b/test.bat
@@ -13,6 +13,7 @@ rem
setlocal
set "failed="
+set "curdir=%CD%"
if "_%1_" == "__" (
echo no database specified
@@ -33,12 +34,12 @@ rem
cd %1
call test.bat %2
if errorlevel 1 set "failed=%failed% %1"
- cd ..
+ cd %curdir%
goto :eof
:start
-for %%d in (tracer common %1) do (
+for %%d in (tracer common %1 boost\common boost\%1) do (
call :run_test %%d %1
)