From: Victor Stinner Date: Wed, 5 Nov 2014 14:07:18 +0000 (+0100) Subject: Issue #19753: Fix test_gdb on SystemZ buildbot, ignore warnings X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=57b00ed0a0651ed6983bb4442fea64a52bfab8f5;p=python Issue #19753: Fix test_gdb on SystemZ buildbot, ignore warnings --- diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index f2c3c9070c..2208eb31d4 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -163,6 +163,10 @@ class DebuggerTests(unittest.TestCase): 'linux-gate.so', 'Do you need "set solib-search-path" or ' '"set sysroot"?', + 'warning: Source file is more recent than executable.', + # Issue #19753: missing symbols on System Z + 'Missing separate debuginfo for ', + 'Try: zypper install -C ', ) for line in errlines: if not line.startswith(ignore_patterns):