summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2011-03-16 00:33:16 (GMT)
committerJesus Cea <jcea@jcea.es>2011-03-16 00:33:16 (GMT)
commitcee36555683b4fa47c335beb6dfc2b487ad6af86 (patch)
tree3458cf3993572891a8d43e64be7de3a7052b5600
parentdcebe0f2dca40a22654c5f09ce1bd141419ea8d3 (diff)
downloadcpython-cee36555683b4fa47c335beb6dfc2b487ad6af86.zip
cpython-cee36555683b4fa47c335beb6dfc2b487ad6af86.tar.gz
cpython-cee36555683b4fa47c335beb6dfc2b487ad6af86.tar.bz2
Close issue #8600: test_gdb failures because innocuous warnings
-rw-r--r--Lib/test/test_gdb.py3
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, '')