From 57b00ed0a0651ed6983bb4442fea64a52bfab8f5 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 5 Nov 2014 15:07:18 +0100 Subject: [PATCH] Issue #19753: Fix test_gdb on SystemZ buildbot, ignore warnings --- Lib/test/test_gdb.py | 4 ++++ 1 file changed, 4 insertions(+) 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): -- 2.50.1