diff options
| author | Jesus Cea <jcea@jcea.es> | 2011-03-16 00:19:49 (GMT) |
|---|---|---|
| committer | Jesus Cea <jcea@jcea.es> | 2011-03-16 00:19:49 (GMT) |
| commit | 6905de14fef619767693f8bd91996bc7e99ca9fe (patch) | |
| tree | e985fe10bec0c98a33cf5d82f9ea82b0318bc4a2 /Lib/test/test_gdb.py | |
| parent | ab40e4cb95dd91c16254aa20dc5c0a2cb3fa08f9 (diff) | |
| download | cpython-6905de14fef619767693f8bd91996bc7e99ca9fe.zip cpython-6905de14fef619767693f8bd91996bc7e99ca9fe.tar.gz cpython-6905de14fef619767693f8bd91996bc7e99ca9fe.tar.bz2 | |
Close issue #8600: test_gdb failures because innocuous warnings
Diffstat (limited to 'Lib/test/test_gdb.py')
| -rw-r--r-- | Lib/test/test_gdb.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index e033dcf..6d4fda1 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, '') |
