Commit dc018276 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #21951: Temporary skip crashing test_user_command on AIX.

parent c904d081
......@@ -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):
......
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