diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-03-23 21:08:25 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-03-23 21:08:25 +0100 |
commit | c53195bbf0b9f5b3bf4e8ddd1c6b12b59731a822 (patch) | |
tree | 246aac0b8909ae1008ece806976b7abd30370652 /Lib/test/test_gdb.py | |
parent | 63fd8b0c92488f1d5fff9ccf6f79933d79b27168 (diff) | |
download | cpython-git-c53195bbf0b9f5b3bf4e8ddd1c6b12b59731a822.tar.gz |
Try to fix test_gdb on s390x SLES 3.x
Ignore empty lines in stderr.
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 8e3ccb0d6a..ccef4223c2 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -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) |