Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

bpo-36511: Fix Windows arm32 buildbot pythoninfo, scp, and ssh #13454

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 21 commits into from
Jun 19, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Avoid mixing debug/release CRT on Windows
  • Loading branch information
Paul Monson committed May 23, 2019
commit 4e147de6e5edd9a8177b41056fd87a1f09453818
8 changes: 4 additions & 4 deletions 8 Lib/test/test_ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
ssl = support.import_module("ssl")

Py_DEBUG = hasattr(sys, 'gettotalrefcount')
Py_DEBUG_Win32_IoT = Py_DEBUG and platform.win32_is_iot()
Py_DEBUG_Win32 = Py_DEBUG and platform.win32_is_iot()

PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)
HOST = support.HOST
Expand Down Expand Up @@ -1347,7 +1347,7 @@ def test_load_verify_cadata(self):
ctx.load_verify_locations(cadata=b"broken")


@unittest.skipIf(sys.platform=='win32' and '' and Py_DEBUG_Win32_IoT, "Crashes on debug builds on Windows IoT")
@unittest.skipIf(Py_DEBUG_Win32, "Avoid mixing debug/release CRT on Windows")
def test_load_dh_params(self):
ctx = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
ctx.load_dh_params(DHFILE)
Expand Down Expand Up @@ -1648,7 +1648,7 @@ def test_str(self):
self.assertEqual(str(e), "foo")
self.assertEqual(e.errno, 1)

@unittest.skipIf(Py_DEBUG_Win32_IoT, "Crashes on debug builds on Windows IoT")
@unittest.skipIf(Py_DEBUG_Win32, "Avoid mixing debug/release CRT on Windows")
def test_lib_reason(self):
# Test the library and reason attributes
ctx = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
Expand Down Expand Up @@ -3829,7 +3829,7 @@ def test_compression_disabled(self):
sni_name=hostname)
self.assertIs(stats['compression'], None)

@unittest.skipIf(Py_DEBUG_Win32_IoT, "Crashes on debug builds on Windows IoT")
@unittest.skipIf(Py_DEBUG_Win32, "Avoid mixing debug/release CRT on Windows")
def test_dh_params(self):
# Check we can get a connection with ephemeral Diffie-Hellman
client_context, server_context, hostname = testing_context()
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.