diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-30 11:00:45 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-30 11:00:45 +0300 |
commit | 8f46da1b29bc4dbdc5fc69a866b0b26308860a98 (patch) | |
tree | b1399e1267b9779fd0a73a0d6be70f4f75e15e8a /Lib/test/test_tcl.py | |
parent | cc66a73d27ba8b3051586221f96effef67c3bb3a (diff) | |
parent | 95a9e0bf8c2862ba3bfec4d5e35ef982521fe1e2 (diff) | |
download | cpython-git-8f46da1b29bc4dbdc5fc69a866b0b26308860a98.tar.gz |
Issue #21951: Temporary skip crashing test_user_command on AIX.
Diffstat (limited to 'Lib/test/test_tcl.py')
-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 5691658643..23e7a30672 100644 --- a/Lib/test/test_tcl.py +++ b/Lib/test/test_tcl.py @@ -414,6 +414,7 @@ class TclTest(unittest.TestCase): self.assertEqual(passValue(['a', ['b', 'c']]), ('a', ('b', 'c')) if self.wantobjects else 'a {b c}') + @unittest.skipIf(sys.platform.startswith("aix"), 'Issue #21951: crashes on AIX') def test_user_command(self): result = None def testfunc(arg): |