diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-27 15:27:21 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-27 15:27:21 (GMT) |
commit | d0bb9c638634335a5a95ec985357b2dcd4ec36fc (patch) | |
tree | cca4e1a144fd72754535e0c7c1a9721adc5fd70c /Tools/buildbot | |
parent | 79035bd71f32cded043a8a7320290c0bd6c9c117 (diff) | |
download | cpython-d0bb9c638634335a5a95ec985357b2dcd4ec36fc.zip cpython-d0bb9c638634335a5a95ec985357b2dcd4ec36fc.tar.gz cpython-d0bb9c638634335a5a95ec985357b2dcd4ec36fc.tar.bz2 |
Allow passing extra testing options to the buildbot test scripts
Diffstat (limited to 'Tools/buildbot')
-rw-r--r-- | Tools/buildbot/test-amd64.bat | 2 | ||||
-rw-r--r-- | Tools/buildbot/test.bat | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/Tools/buildbot/test-amd64.bat b/Tools/buildbot/test-amd64.bat index d178c92..1bf124c 100644 --- a/Tools/buildbot/test-amd64.bat +++ b/Tools/buildbot/test-amd64.bat @@ -1,3 +1,3 @@ @rem Used by the buildbot "test" step. cd PCbuild -call rt.bat -q -d -x64 -uall -rw +call rt.bat -d -q -x64 -uall -rwW -n %1 %2 %3 %4 %5 %6 %7 %8 %9 diff --git a/Tools/buildbot/test.bat b/Tools/buildbot/test.bat index 5882def..4f4c6aa 100644 --- a/Tools/buildbot/test.bat +++ b/Tools/buildbot/test.bat @@ -1,4 +1,3 @@ @rem Used by the buildbot "test" step. cd PCbuild -call rt.bat -d -q -uall -rwW -n - +call rt.bat -d -q -uall -rwW -n %1 %2 %3 %4 %5 %6 %7 %8 %9 |