[Python-checkins] cpython (2.7): Issue #19753: Fix test_gdb on SystemZ buildbot, ignore warnings

victor.stinner python-checkins at python.org
Wed Nov 5 15:12:13 CET 2014


https://hg.python.org/cpython/rev/4c260cf1ba39
changeset:   93385:4c260cf1ba39
branch:      2.7
parent:      93382:eba6e68e818c
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Wed Nov 05 15:07:18 2014 +0100
summary:
  Issue #19753: Fix test_gdb on SystemZ buildbot, ignore warnings

files:
  Lib/test/test_gdb.py |  4 ++++
  1 files changed, 4 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py
--- a/Lib/test/test_gdb.py
+++ b/Lib/test/test_gdb.py
@@ -163,6 +163,10 @@
             '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):

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list