summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-01-25 21:32:36 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-01-25 21:32:36 (GMT)
commit4f99ce94703da719989e5cc47fe47b464f5c7514 (patch)
treeecc43223a89fe8e6185f2745b71a0f3b53aaae5e
parenta5f6d0e030e11b84e9e952f6ce688b32f232dda3 (diff)
parent131c7079d3f35883f4acc0b5fb7542feccfe3560 (diff)
downloadcpython-4f99ce94703da719989e5cc47fe47b464f5c7514.zip
cpython-4f99ce94703da719989e5cc47fe47b464f5c7514.tar.gz
cpython-4f99ce94703da719989e5cc47fe47b464f5c7514.tar.bz2
merge heads
-rw-r--r--Lib/test/test_zlib.py12
-rw-r--r--Misc/NEWS3
2 files changed, 9 insertions, 6 deletions
diff --git a/Lib/test/test_zlib.py b/Lib/test/test_zlib.py
index 51a9d4b..851fbf7 100644
--- a/Lib/test/test_zlib.py
+++ b/Lib/test/test_zlib.py
@@ -16,12 +16,12 @@ except ImportError:
class VersionTestCase(unittest.TestCase):
def test_library_version(self):
- # On the build system, ZLIB_RUNTIME_VERSION should match ZLIB_VERSION.
- # ZLIB_RUNTIME_VERSION is the actual library version while ZLIB_VERSION
- # is the version from the header file. On the build system, the headers
- # should match with the library exactly. At runtime, only the first
- # digit is required to match.
- self.assertEqual(zlib.ZLIB_RUNTIME_VERSION, zlib.ZLIB_VERSION)
+ # Test that the major version of the actual library in use matches the
+ # major version that we were compiled against. We can't guarantee that
+ # the minor versions will match (even on the machine on which the module
+ # was compiled), and the API is stable between minor versions, so
+ # testing only the major verions avoids spurious failures.
+ self.assertEqual(zlib.ZLIB_RUNTIME_VERSION[0], zlib.ZLIB_VERSION[0])
class ChecksumTestCase(unittest.TestCase):
diff --git a/Misc/NEWS b/Misc/NEWS
index f6b1f0d..2dab0a1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -461,6 +461,9 @@ Core and Builtins
Library
-------
+- Issue #13862: Fix spurious failure in test_zlib due to runtime/compile time
+ minor versions not matching.
+
- Issue #12804: Fix test_socket and test_urllib2net failures when running tests
on a system without internet access.