summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_gdb.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-11-05 14:07:18 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-11-05 14:07:18 (GMT)
commit57b00ed0a0651ed6983bb4442fea64a52bfab8f5 (patch)
tree9f452c3509422901258b00fd2b7497b05ae1b287 /Lib/test/test_gdb.py
parent06c14976dc5f40e92423313d5068d6a71f7765cf (diff)
downloadcpython-57b00ed0a0651ed6983bb4442fea64a52bfab8f5.zip
cpython-57b00ed0a0651ed6983bb4442fea64a52bfab8f5.tar.gz
cpython-57b00ed0a0651ed6983bb4442fea64a52bfab8f5.tar.bz2
Issue #19753: Fix test_gdb on SystemZ buildbot, ignore warnings
Diffstat (limited to 'Lib/test/test_gdb.py')
-rw-r--r--Lib/test/test_gdb.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py
index f2c3c90..2208eb3 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):