bpo-36511: Add buildbot scripts and fix tests for Windows ARM32 buildbot (GH-13454)

This commit is contained in:
Paul Monson 2019-06-19 13:09:54 -07:00 committed by Steve Dower
parent 12f1c726d8
commit f355069a33
8 changed files with 107 additions and 13 deletions

View file

@ -3,6 +3,7 @@
from io import BytesIO
import os
import platform
import sys
import sysconfig
import unittest
@ -465,7 +466,7 @@ class HandlerExceptionTest(unittest.TestCase):
"pyexpat.c", "StartElement")
self.check_traceback_entry(entries[2],
"test_pyexpat.py", "StartElementHandler")
if sysconfig.is_python_build():
if sysconfig.is_python_build() and not (sys.platform == 'win32' and platform.machine() == 'ARM'):
self.assertIn('call_with_frame("StartElement"', entries[1][3])