Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
cc28ed24
Commit
cc28ed24
authored
Sep 25, 2019
by
Vinay Sajip
Committed by
GitHub
Sep 25, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-22273: Removed temporary test skipping on PPC platforms. (GH-16399)
parent
bfd0c963
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
Lib/ctypes/test/test_structures.py
Lib/ctypes/test/test_structures.py
+3
-2
No files found.
Lib/ctypes/test/test_structures.py
View file @
cc28ed24
...
...
@@ -6,6 +6,9 @@ from struct import calcsize
import
_ctypes_test
from
test
import
support
# The following definition is meant to be used from time to time to assist
# temporarily disabling tests on specific architectures while investigations
# are in progress, to keep buildbots happy.
MACHINE
=
platform
.
machine
()
class
SubclassesTest
(
unittest
.
TestCase
):
...
...
@@ -480,8 +483,6 @@ class StructureTestCase(unittest.TestCase):
self
.
assertEqual
(
s
.
first
,
got
.
first
)
self
.
assertEqual
(
s
.
second
,
got
.
second
)
@
unittest
.
skipIf
(
MACHINE
.
startswith
(
'ppc'
),
'Test temporarily disabled on this architecture'
)
def
test_array_in_struct
(
self
):
# See bpo-22273
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment