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

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


http://hg.python.org/cpython/rev/de32cd419174
changeset:   91938:de32cd419174
parent:      91935:79a5fbe2c78f
parent:      91937:31f4cb1fede9
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Wed Jul 30 11:00:45 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
@@ -414,6 +414,7 @@
         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):

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


More information about the Python-checkins mailing list