Further review comments: update run.bat to run the test suite relative to its directory.
--- a/sbsv2/raptor/test/run.bat Mon Feb 22 11:49:11 2010 +0000
+++ b/sbsv2/raptor/test/run.bat Thu Feb 25 11:07:00 2010 +0000
@@ -17,8 +17,8 @@
@SETLOCAL
@CALL %SBS_HOME%\bin\sbs_env.bat
-@SET __TEST_SUITE__=%SBS_HOME%\test\common\run_tests.pyc
-@SET __TEST_SUITE_PY__=%SBS_HOME%\test\common\run_tests.py
+@SET __TEST_SUITE__=%~dp0common\run_tests.pyc
+@SET __TEST_SUITE_PY__=%~dp0common\run_tests.py
@REM If the Python source exists, use it. Else use the byte-compiled Python code
@IF EXIST %__TEST_SUITE_PY__% SET __TEST_SUITE__=%__TEST_SUITE_PY__%