Commit 95a9e0bf authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #21951: Temporary skip crashing test_user_command on AIX.

parent ec2ce092
......@@ -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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment