mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-36511: Add buildbot scripts and fix tests for Windows ARM32 buildbot (GH-13454)
This commit is contained in:
parent
12f1c726d8
commit
f355069a33
8 changed files with 107 additions and 13 deletions
|
@ -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])
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue