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
6f8a0586
Commit
6f8a0586
authored
Aug 03, 2015
by
Robert Collins
Browse files
Options
Browse Files
Download
Plain Diff
Issue #22397: Skip failing tests on AIX
Patch from David Edelsohn.
parents
c3fcb969
43cbbe21
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
Lib/test/test_socket.py
Lib/test/test_socket.py
+4
-0
No files found.
Lib/test/test_socket.py
View file @
6f8a0586
...
...
@@ -2750,6 +2750,7 @@ class SCMRightsTest(SendrecvmsgServerTimeoutBase):
self
.
createAndSendFDs
(
1
)
@
unittest
.
skipIf
(
sys
.
platform
==
"darwin"
,
"skipping, see issue #12958"
)
@
unittest
.
skipIf
(
sys
.
platform
.
startswith
(
"aix"
),
"skipping, see issue #22397"
)
@
requireAttrs
(
socket
,
"CMSG_SPACE"
)
def
testFDPassSeparate
(
self
):
# Pass two FDs in two separate arrays. Arrays may be combined
...
...
@@ -2760,6 +2761,7 @@ class SCMRightsTest(SendrecvmsgServerTimeoutBase):
@
testFDPassSeparate
.
client_skip
@
unittest
.
skipIf
(
sys
.
platform
==
"darwin"
,
"skipping, see issue #12958"
)
@
unittest
.
skipIf
(
sys
.
platform
.
startswith
(
"aix"
),
"skipping, see issue #22397"
)
def
_testFDPassSeparate
(
self
):
fd0
,
fd1
=
self
.
newFDs
(
2
)
self
.
assertEqual
(
...
...
@@ -2772,6 +2774,7 @@ class SCMRightsTest(SendrecvmsgServerTimeoutBase):
len
(
MSG
))
@
unittest
.
skipIf
(
sys
.
platform
==
"darwin"
,
"skipping, see issue #12958"
)
@
unittest
.
skipIf
(
sys
.
platform
.
startswith
(
"aix"
),
"skipping, see issue #22397"
)
@
requireAttrs
(
socket
,
"CMSG_SPACE"
)
def
testFDPassSeparateMinSpace
(
self
):
# Pass two FDs in two separate arrays, receiving them into the
...
...
@@ -2784,6 +2787,7 @@ class SCMRightsTest(SendrecvmsgServerTimeoutBase):
@
testFDPassSeparateMinSpace
.
client_skip
@
unittest
.
skipIf
(
sys
.
platform
==
"darwin"
,
"skipping, see issue #12958"
)
@
unittest
.
skipIf
(
sys
.
platform
.
startswith
(
"aix"
),
"skipping, see issue #22397"
)
def
_testFDPassSeparateMinSpace
(
self
):
fd0
,
fd1
=
self
.
newFDs
(
2
)
self
.
assertEqual
(
...
...
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