Issue #26295: Fix test_regrtest.test_tools_buildbot_test()

Pass also --testdir option.
This commit is contained in:
Victor Stinner 2016-03-30 08:38:05 +02:00
parent d6e2502624
commit 732599f793
1 changed files with 1 additions and 1 deletions

View File

@ -527,7 +527,7 @@ class ProgramsTestCase(BaseTestCase):
def test_tools_buildbot_test(self):
# Tools\buildbot\test.bat
script = os.path.join(ROOT_DIR, 'Tools', 'buildbot', 'test.bat')
test_args = []
test_args = ['--testdir=%s' % self.tmptestdir]
if platform.architecture()[0] == '64bit':
test_args.append('-x64') # 64-bit build
if not Py_DEBUG: