From: Jesus Cea Date: Wed, 16 Mar 2011 00:19:49 +0000 (+0100) Subject: Close issue #8600: test_gdb failures because innocuous warnings X-Git-Tag: v2.7.2rc1~248 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6905de14fef619767693f8bd91996bc7e99ca9fe;p=thirdparty%2FPython%2Fcpython.git Close issue #8600: test_gdb failures because innocuous warnings --- diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index e033dcf1fd93..6d4fda1ba333 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -125,6 +125,9 @@ class DebuggerTests(unittest.TestCase): " inferior's thread library, thread debugging will" " not be available.\n", '') + err = err.replace("warning: Cannot initialize thread debugging" + " library: Debugger service failed\n", + '') # Ensure no unexpected error messages: self.assertEqual(err, '')