Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
4dd20d3c
Commit
4dd20d3c
authored
Feb 11, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test fixes for 2.6 built without sslv2
parent
ae489475
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
11 deletions
+17
-11
gevent/_ssl2.py
gevent/_ssl2.py
+2
-1
greentest/patched_tests_setup.py
greentest/patched_tests_setup.py
+15
-10
No files found.
gevent/_ssl2.py
View file @
4dd20d3c
...
...
@@ -59,7 +59,8 @@ for name in dir(__ssl__):
del
name
,
value
__all__
=
__implements__
+
__imports__
# Py2.6 can get RAND_status added twice
__all__
=
list
(
set
(
__implements__
)
|
set
(
__imports__
))
class
SSLSocket
(
socket
):
...
...
greentest/patched_tests_setup.py
View file @
4dd20d3c
...
...
@@ -175,19 +175,23 @@ if 'thread' in os.getenv('GEVENT_FILE', ''):
# Fails with "OSError: 9 invalid file descriptor"; expect GC/lifetime issues
]
def
disabled_tests_extend
(
lines
):
disabled_tests
.
extend
(
lines
.
strip
().
split
(
'
\
n
'
))
if
sys
.
version_info
[:
2
]
==
(
2
,
6
):
if
sys
.
version_info
[:
2
]
==
(
2
,
6
)
and
os
.
environ
.
get
(
'TRAVIS'
)
==
'true'
:
# somehow these fail with "Permission denied" on travis
disabled_tests_extend
(
'''
test_httpservers.CGIHTTPServerTestCase.test_post
test_httpservers.CGIHTTPServerTestCase.test_headers_and_content
test_httpservers.CGIHTTPServerTestCase.test_authorization
test_httpservers.SimpleHTTPServerTestCase.test_get
'''
)
disabled_tests
+=
[
# SSLv2 May or may not be available depending on the build
'test_ssl.BasicTests.test_constants'
,
]
if
os
.
environ
.
get
(
'TRAVIS'
)
==
'true'
:
# somehow these fail with "Permission denied" on travis
disabled_tests
+=
[
'test_httpservers.CGIHTTPServerTestCase.test_post'
,
'test_httpservers.CGIHTTPServerTestCase.test_headers_and_content'
,
'test_httpservers.CGIHTTPServerTestCase.test_authorization'
,
'test_httpservers.SimpleHTTPServerTestCase.test_get'
]
if
sys
.
platform
==
'darwin'
:
disabled_tests
+=
[
...
...
@@ -224,6 +228,7 @@ if sys.version_info[:2] == (3, 4) and sys.version_info[:3] < (3, 4, 4):
'test_ssl.ContextTests.test_options'
,
'test_ssl.ThreadedTests.test_protocol_sslv23'
,
'test_ssl.ThreadedTests.test_protocol_sslv3'
,
'test_httplib.HTTPSTest.test_networked'
,
]
if
sys
.
version_info
[:
2
]
>=
(
3
,
4
):
...
...
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