From f8a9a837c405ab5e8c8ad892188850480da9d0b1 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 20 Sep 2012 23:48:23 -0400 Subject: remove gdb noise about linux-vdso --- Lib/test/test_gdb.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index a02f5c7..fb8261b 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, '') -- cgit v0.12