bpo-33352: Skip test_regrtest test if rt.bat does not exist (GH-6654) (#6656)

(cherry picked from commit c3b7a6dfb9)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
This commit is contained in:
Miss Islington (bot) 2018-04-30 13:36:49 -07:00 committed by Victor Stinner
parent 2e5fa38c5a
commit 8075868f19
1 changed files with 2 additions and 0 deletions

View File

@ -594,6 +594,8 @@ class ProgramsTestCase(BaseTestCase):
def test_pcbuild_rt(self):
# PCbuild\rt.bat
script = os.path.join(ROOT_DIR, r'PCbuild\rt.bat')
if not os.path.isfile(script):
self.skipTest(f'File "{script}" does not exist')
rt_args = ["-q"] # Quick, don't run tests twice
if platform.architecture()[0] == '64bit':
rt_args.append('-x64') # 64-bit build