Show More
@@ -286,6 +286,9 b' def getdiff(expected, output, ref, err):' | |||
|
286 | 286 | servefail = False |
|
287 | 287 | lines = [] |
|
288 | 288 | for line in difflib.unified_diff(expected, output, ref, err): |
|
289 | if line.startswith('+++') or line.startswith('---'): | |
|
290 | if line.endswith(' \n'): | |
|
291 | line = line[:-2] + '\n' | |
|
289 | 292 | lines.append(line) |
|
290 | 293 | if not servefail and line.startswith( |
|
291 | 294 | '+ abort: child process failed to start'): |
General Comments 0
You need to be logged in to leave comments.
Login now