From 77149a1c6120bd537cbc90df9a18e2d8e7b208fa Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 30 Jul 2014 10:58:34 +0300 Subject: [PATCH] Issue #21951: Temporary skip crashing test_user_command on AIX. --- Lib/test/test_tcl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py index d8dc9c300e..fcbafc5bd2 100644 --- a/Lib/test/test_tcl.py +++ b/Lib/test/test_tcl.py @@ -426,6 +426,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 = [] def testfunc(arg): -- 2.50.1