Lines Matching refs:line
34 def line(self):
38 """Store file and line information about errors or warnings in test suites."""
74 line_number: the line number in the given file.
93 for line_number, line in enumerate(data_file, 1):
94 line = line.rstrip(b'\r\n')
95 if not line:
98 if line.startswith(b'#'):
101 # This is a test case description line.
103 data_file_name, line_number, line)
114 # idx indicates the number of test case since there is no line number
116 for idx, line in enumerate(listed.splitlines()):
119 script_outputs = line.split(b';', 1)
123 raise ScriptOutputError(script_name, idx, line.decode("utf-8"))
185 """Dictionary mapping descriptions to their line number."""
195 'Duplicate description (also line {})',
234 e.line)