diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-11-25 09:43:59 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-11-25 09:43:59 (GMT) |
commit | 23ed7e3d128d584854146e09ff4c77135deeee67 (patch) | |
tree | cd30256e689e2eb4cb0d9105dee9fd29ff221916 /Lib/test/test_gdb.py | |
parent | d2736affa1707b0f0d90cc5440d241a52a2704db (diff) | |
download | cpython-23ed7e3d128d584854146e09ff4c77135deeee67.zip cpython-23ed7e3d128d584854146e09ff4c77135deeee67.tar.gz cpython-23ed7e3d128d584854146e09ff4c77135deeee67.tar.bz2 |
Issue #19753: New try to fix test_gdb on System Z buildbot
Diffstat (limited to 'Lib/test/test_gdb.py')
-rw-r--r-- | Lib/test/test_gdb.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index cc2900f..0e254a2 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -170,7 +170,9 @@ class DebuggerTests(unittest.TestCase): '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): |