Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0d88c652
Commit
0d88c652
authored
Apr 20, 2016
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport test_gdb fix for s390x buildbots
parent
b5d164cc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
17 deletions
+7
-17
Lib/test/test_gdb.py
Lib/test/test_gdb.py
+7
-17
No files found.
Lib/test/test_gdb.py
View file @
0d88c652
...
...
@@ -198,27 +198,17 @@ class DebuggerTests(unittest.TestCase):
# Ignore some benign messages on stderr.
ignore_patterns
=
(
'Function "%s" not defined.'
%
breakpoint
,
"warning: no loadable sections found in added symbol-file"
" system-supplied DSO"
,
"warning: Unable to find libthread_db matching"
" inferior's thread library, thread debugging will"
" not be available."
,
"warning: Cannot initialize thread debugging"
" library: Debugger service failed"
,
'warning: Could not load shared library symbols for '
'linux-vdso.so'
,
'warning: Could not load shared library symbols for '
'linux-gate.so'
,
'warning: Could not load shared library symbols for '
'linux-vdso64.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 '
,
# BFD: /usr/lib/debug/(...): unable to initialize decompress
# status for section .debug_aranges
'BFD: '
,
# ignore all warnings
'warning: '
,
)
for
line
in
errlines
:
if
not
line
:
continue
if
not
line
.
startswith
(
ignore_patterns
):
unexpected_errlines
.
append
(
line
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment