diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2014-11-05 14:07:18 (GMT) |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2014-11-05 14:07:18 (GMT) |
| commit | 57b00ed0a0651ed6983bb4442fea64a52bfab8f5 (patch) | |
| tree | 9f452c3509422901258b00fd2b7497b05ae1b287 /Lib/test/test_gdb.py | |
| parent | 06c14976dc5f40e92423313d5068d6a71f7765cf (diff) | |
| download | cpython-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.py | 4 |
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): |
