diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-30 07:59:46 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-30 07:59:46 (GMT) |
commit | 95a9e0bf8c2862ba3bfec4d5e35ef982521fe1e2 (patch) | |
tree | eba7d34612ebf93a48d43e53785bd0bb20544114 | |
parent | ec2ce092a2e2ea82e7dc178531dd8870af79e3a5 (diff) | |
download | cpython-95a9e0bf8c2862ba3bfec4d5e35ef982521fe1e2.zip cpython-95a9e0bf8c2862ba3bfec4d5e35ef982521fe1e2.tar.gz cpython-95a9e0bf8c2862ba3bfec4d5e35ef982521fe1e2.tar.bz2 |
Issue #21951: Temporary skip crashing test_user_command on AIX.
-rw-r--r-- | Lib/test/test_tcl.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py index 01b532d..e57b5e1 100644 --- a/Lib/test/test_tcl.py +++ b/Lib/test/test_tcl.py @@ -412,6 +412,7 @@ class TclTest(unittest.TestCase): self.assertEqual(passValue((1, '2', (3.4,))), (1, '2', (3.4,)) if self.wantobjects else '1 2 3.4') + @unittest.skipIf(sys.platform.startswith("aix"), 'Issue #21951: crashes on AIX') def test_user_command(self): result = None def testfunc(arg): |