remove gdb noise about linux-vdso

This commit is contained in:
Benjamin Peterson 2012-09-20 23:48:23 -04:00
parent 39e0fb01ef
commit fb2f409b90
1 changed files with 5 additions and 0 deletions

View File

@ -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, '')