diff options
-rw-r--r-- | Lib/test/test_gdb.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index 4cff870..15d8034 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -121,6 +121,11 @@ class DebuggerTests(unittest.TestCase): # Ignore some noise on stderr due to the pending breakpoint: err = err.replace('Function "%s" not defined.\n' % breakpoint, '') + # Ignore some other noise on stderr (http://bugs.python.org/issue8600) + err = err.replace("warning: Unable to find libthread_db matching" + " inferior's thread library, thread debugging will" + " not be available.\n", + '') # Ensure no unexpected error messages: self.assertEquals(err, '') |