From: Serhiy Storchaka Date: Wed, 30 Jul 2014 08:00:45 +0000 (+0300) Subject: Issue #21951: Temporary skip crashing test_user_command on AIX. X-Git-Tag: v3.5.0a1~1159 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8f46da1b29bc4dbdc5fc69a866b0b26308860a98;p=thirdparty%2FPython%2Fcpython.git Issue #21951: Temporary skip crashing test_user_command on AIX. --- 8f46da1b29bc4dbdc5fc69a866b0b26308860a98 diff --cc Lib/test/test_tcl.py index 5691658643ed,e57b5e16bbd7..23e7a306729f --- a/Lib/test/test_tcl.py +++ b/Lib/test/test_tcl.py @@@ -411,9 -411,8 +411,10 @@@ class TclTest(unittest.TestCase) # XXX NaN representation can be not parsable by float() self.assertEqual(passValue((1, '2', (3.4,))), (1, '2', (3.4,)) if self.wantobjects else '1 2 3.4') + 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):