diff options
| author | Jesus Cea <jcea@jcea.es> | 2011-03-16 01:33:16 +0100 |
|---|---|---|
| committer | Jesus Cea <jcea@jcea.es> | 2011-03-16 01:33:16 +0100 |
| commit | cee36555683b4fa47c335beb6dfc2b487ad6af86 (patch) | |
| tree | 3458cf3993572891a8d43e64be7de3a7052b5600 /Lib/test | |
| parent | dcebe0f2dca40a22654c5f09ce1bd141419ea8d3 (diff) | |
| download | cpython-git-cee36555683b4fa47c335beb6dfc2b487ad6af86.tar.gz | |
Close issue #8600: test_gdb failures because innocuous warnings
Diffstat (limited to 'Lib/test')
| -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 5127a6fc52..17b44ea354 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -127,6 +127,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, '') |
