Commit 25b93cb9 authored by Victor Stinner's avatar Victor Stinner

Try to fix test_gdb on s390x SLES 3.x

Ignore empty lines in stderr.
parent 4d184999
......@@ -208,6 +208,8 @@ class DebuggerTests(unittest.TestCase):
'warning: ',
)
for line in errlines:
if not line:
continue
if not line.startswith(ignore_patterns):
unexpected_errlines.append(line)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment