From: Benjamin Peterson Date: Fri, 21 Sep 2012 03:48:23 +0000 (-0400) Subject: remove gdb noise about linux-vdso X-Git-Tag: v2.7.4rc1~550 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb2f409b90cbe8672fdaf574384c66517b6fbe14;p=thirdparty%2FPython%2Fcpython.git remove gdb noise about linux-vdso --- diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index 3c4162586029..3bf718aa6d6c 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -150,6 +150,11 @@ class DebuggerTests(unittest.TestCase): err = err.replace("warning: Cannot initialize thread debugging" " library: Debugger service failed\n", '') + err = err.replace('warning: Could not load shared library symbols for ' + 'linux-vdso.so.1.\n' + 'Do you need "set solib-search-path" or ' + '"set sysroot"?\n', + '') # Ensure no unexpected error messages: self.assertEqual(err, '')