From: Benjamin Peterson Date: Fri, 21 Sep 2012 03:48:23 +0000 (-0400) Subject: remove gdb noise about linux-vdso X-Git-Tag: v3.2.4rc1~512 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f8a9a837c405ab5e8c8ad892188850480da9d0b1;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 a02f5c754efe..fb8261beff0e 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -144,6 +144,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, '')