[Python-checkins] cpython: Issue #11049: skip a test that fails on some buildbots

eli.bendersky python-checkins at python.org
Sat Jul 23 14:01:00 CEST 2011


http://hg.python.org/cpython/rev/0018a28583f4
changeset:   71473:0018a28583f4
parent:      71471:fcccda3c546f
user:        Eli Bendersky <eliben at gmail.com>
date:        Sat Jul 23 15:00:31 2011 +0300
summary:
  Issue #11049: skip a test that fails on some buildbots

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


diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py
--- a/Lib/test/test_support.py
+++ b/Lib/test/test_support.py
@@ -30,6 +30,7 @@
                         self.test_get_attribute)
         self.assertRaises(unittest.SkipTest, support.get_attribute, self, "foo")
 
+    @unittest.skip("failing buildbots")
     def test_get_original_stdout(self):
         self.assertEqual(support.get_original_stdout(), sys.stdout)
 

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


More information about the Python-checkins mailing list