[Python-checkins] cpython (3.4): Issue #21951: Temporary skip crashing test_user_command on AIX.

serhiy.storchaka python-checkins at python.org
Wed Jul 30 10:02:16 CEST 2014


http://hg.python.org/cpython/rev/31f4cb1fede9
changeset:   91937:31f4cb1fede9
branch:      3.4
parent:      91931:95ceec174baf
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Wed Jul 30 10:59:46 2014 +0300
summary:
  Issue #21951: Temporary skip crashing test_user_command on AIX.

files:
  Lib/test/test_tcl.py |  1 +
  1 files changed, 1 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py
--- a/Lib/test/test_tcl.py
+++ b/Lib/test/test_tcl.py
@@ -412,6 +412,7 @@
         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):

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list