summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-07-30 07:59:46 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-07-30 07:59:46 (GMT)
commit95a9e0bf8c2862ba3bfec4d5e35ef982521fe1e2 (patch)
treeeba7d34612ebf93a48d43e53785bd0bb20544114
parentec2ce092a2e2ea82e7dc178531dd8870af79e3a5 (diff)
downloadcpython-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.py1
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):