changeset: 100796:e29f12ed4444 user: Victor Stinner date: Wed Mar 30 08:38:05 2016 +0200 files: Lib/test/test_regrtest.py description: Issue #26295: Fix test_regrtest.test_tools_buildbot_test() Pass also --testdir option. diff -r c83349c129c9 -r e29f12ed4444 Lib/test/test_regrtest.py --- a/Lib/test/test_regrtest.py Wed Mar 30 02:33:52 2016 +0200 +++ b/Lib/test/test_regrtest.py Wed Mar 30 08:38:05 2016 +0200 @@ -527,7 +527,7 @@ 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: