diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-09-21 03:48:23 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-09-21 03:48:23 (GMT) |
commit | f8a9a837c405ab5e8c8ad892188850480da9d0b1 (patch) | |
tree | 7080d6def48c31e21ac178dcb1ab2339dcc1aa92 /Lib/test/test_gdb.py | |
parent | 57caede4705f5e3121f9f90435009ef8e7269a98 (diff) | |
download | cpython-f8a9a837c405ab5e8c8ad892188850480da9d0b1.zip cpython-f8a9a837c405ab5e8c8ad892188850480da9d0b1.tar.gz cpython-f8a9a837c405ab5e8c8ad892188850480da9d0b1.tar.bz2 |
remove gdb noise about linux-vdso
Diffstat (limited to 'Lib/test/test_gdb.py')
-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 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, '') |