]> granicus.if.org Git - python/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 9b1a8d7701d6836da8ad57a0746a2f25608352e1..3810e12ed062cc0280d17d26618e6a77753c81d3 100644 (file)
@@ -391,6 +391,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):