Commit 8f46da1b authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #21951: Temporary skip crashing test_user_command on AIX.

parents cc66a73d 95a9e0bf
......@@ -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):
......
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