Lines Matching full:errors
37 errors = [ variable
77 # hash, subject, return code, list of errors/warnings
80 ['5678', 'Second commit, a warning', 0, errors[0:1]],
81 ['9012', 'Third commit, error', 1, errors[0:2]],
82 ['3456', 'Fourth commit, warning', 0, [errors[0], errors[2]]],
83 ['7890', 'Fifth commit, link errors', 1, [errors[0], errors[3]]],
84 ['abcd', 'Sixth commit, fixes all errors', 0, []],
85 ['ef01', 'Seventh commit, check directory suppression', 1, [errors[4]]],
218 errors[0].rstrip().replace('\n', '\nw+'))
228 errors[1].rstrip().replace('\n', '\n+'))
237 errors[1].rstrip().replace('\n', '\n-'))
241 errors[2].rstrip().replace('\n', '\nw+'))
248 # The second line of errors[3] is a duplicate, so buildman will drop it
249 expect = errors[3].rstrip().split('\n')
255 errors[2].rstrip().replace('\n', '\nw-'))
260 # The second line of errors[3] is a duplicate, so buildman will drop it
261 expect = errors[3].rstrip().split('\n')
267 errors[0].rstrip().replace('\n', '\nw-'))
273 expect_str = errors[4].rstrip().replace('%(basedir)s', '').split('\n')