]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #21526: Skip test_booleans on Tcl < 8.5.
authorSerhiy Storchaka <storchaka@gmail.com>
Thu, 2 Apr 2015 16:57:52 +0000 (19:57 +0300)
committerSerhiy Storchaka <storchaka@gmail.com>
Thu, 2 Apr 2015 16:57:52 +0000 (19:57 +0300)
Lib/test/test_tcl.py

index 8ff2ebf6d2157b0c9a7e983c2a354aeb239c9d96..927b0e3c90fdf65b2eb66fcb6bc6149e11d6ab92 100644 (file)
@@ -406,6 +406,7 @@ class TclTest(unittest.TestCase):
         if tcl_version >= (8, 5):  # bignum was added in Tcl 8.5
             check('2**64', True)
 
+    @unittest.skipUnless(tcl_version >= (8, 5), 'requires Tcl version >= 8.5')
     def test_booleans(self):
         tcl = self.interp
         def check(expr, expected):