Commit 05784a70 authored by Ned Deily's avatar Ned Deily

Issue #23345: Prevent test_ssl failures with large OpenSSL patch level

values (like 0.9.8zc).
parent ff0fdef6
...@@ -292,7 +292,7 @@ class BasicSocketTests(unittest.TestCase): ...@@ -292,7 +292,7 @@ class BasicSocketTests(unittest.TestCase):
self.assertGreaterEqual(fix, 0) self.assertGreaterEqual(fix, 0)
self.assertLess(fix, 256) self.assertLess(fix, 256)
self.assertGreaterEqual(patch, 0) self.assertGreaterEqual(patch, 0)
self.assertLessEqual(patch, 26) self.assertLessEqual(patch, 63)
self.assertGreaterEqual(status, 0) self.assertGreaterEqual(status, 0)
self.assertLessEqual(status, 15) self.assertLessEqual(status, 15)
# Version string as returned by {Open,Libre}SSL, the format might change # Version string as returned by {Open,Libre}SSL, the format might change
......
...@@ -340,6 +340,9 @@ Tests ...@@ -340,6 +340,9 @@ Tests
- Issue #23211: Workaround test_logging failure on some OS X 10.6 systems. - Issue #23211: Workaround test_logging failure on some OS X 10.6 systems.
- Issue #23345: Prevent test_ssl failures with large OpenSSL patch level
values (like 0.9.8zc).
Build Build
----- -----
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment