From: Florent Xicluna Date: Tue, 1 Nov 2011 15:07:23 +0000 (+0100) Subject: Troubleshoot issue #13309 on Gentoo buildbot. X-Git-Tag: v3.3.0a1~989 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=712b14fc2a41ff7a1b7a00cab0f237ef3d07939a;p=thirdparty%2FPython%2Fcpython.git Troubleshoot issue #13309 on Gentoo buildbot. --- diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index 92c92e43fda2..106d8aa1614a 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -162,8 +162,8 @@ class TimeTestCase(unittest.TestCase): (format, strf_output)) # XXX Temporary tests to troubleshoot issue #13309 on buildbots - test_aaa_strptime = test_strptime - test_bbb_strptime = test_strptime + test_maa_strptime = test_strptime + test_mzz_strptime = test_strptime def test_strptime_bytes(self): # Make sure only strings are accepted as arguments to strptime. @@ -310,6 +310,8 @@ class TimeTestCase(unittest.TestCase): pass else: self.assertEqual(time.mktime(tt), t) + self.assertNotEqual(time.strftime('%Z', time.gmtime(self.t)), 'LMT', + "strftime bug after processing t = %s" % t) # It may not be possible to reliably make mktime return error # on all platfom. This will make sure that no other exception # than OverflowError is raised for an extreme value.