diff options
author | Jesus Cea <jcea@jcea.es> | 2011-03-16 00:34:29 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2011-03-16 00:34:29 (GMT) |
commit | 607476bf1d78050c475815acaef840b82275eeea (patch) | |
tree | 5de2e926b7a5c9ff26e85b21ce96e1cb47fcffa5 | |
parent | ed1fce2ee5c1e8c44d5c1500962f2f509ffb37d6 (diff) | |
parent | cee36555683b4fa47c335beb6dfc2b487ad6af86 (diff) | |
download | cpython-607476bf1d78050c475815acaef840b82275eeea.zip cpython-607476bf1d78050c475815acaef840b82275eeea.tar.gz cpython-607476bf1d78050c475815acaef840b82275eeea.tar.bz2 |
Merge: Close issue #8600: test_gdb failures because innocuous warnings
-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 5127a6f..17b44ea 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, '') |