|
8 | 8 | import time
|
9 | 9 |
|
10 | 10 | from . import base
|
11 |
| -from ..local import junit_output |
12 | 11 |
|
13 | 12 |
|
14 | 13 | def print_failure_header(test):
|
@@ -244,45 +243,6 @@ def _clear_line(self, last_length):
|
244 | 243 | print ("\r" + (" " * last_length) + "\r"),
|
245 | 244 |
|
246 | 245 |
|
247 |
| -class JUnitTestProgressIndicator(ProgressIndicator): |
248 |
| - def __init__(self, junitout, junittestsuite): |
249 |
| - super(JUnitTestProgressIndicator, self).__init__() |
250 |
| - self._requirement = base.DROP_PASS_STDOUT |
251 |
| - |
252 |
| - self.outputter = junit_output.JUnitTestOutput(junittestsuite) |
253 |
| - if junitout: |
254 |
| - self.outfile = open(junitout, "w") |
255 |
| - else: |
256 |
| - self.outfile = sys.stdout |
257 |
| - |
258 |
| - def _on_result_for(self, test, result): |
259 |
| - # TODO(majeski): Support for dummy/grouped results |
260 |
| - fail_text = "" |
261 |
| - output = result.output |
262 |
| - if result.has_unexpected_output: |
263 |
| - stdout = output.stdout.strip() |
264 |
| - if len(stdout): |
265 |
| - fail_text += "stdout:\n%s\n" % stdout |
266 |
| - stderr = output.stderr.strip() |
267 |
| - if len(stderr): |
268 |
| - fail_text += "stderr:\n%s\n" % stderr |
269 |
| - fail_text += "Command: %s" % result.cmd.to_string() |
270 |
| - if output.HasCrashed(): |
271 |
| - fail_text += "exit code: %d\n--- CRASHED ---" % output.exit_code |
272 |
| - if output.HasTimedOut(): |
273 |
| - fail_text += "--- TIMEOUT ---" |
274 |
| - self.outputter.HasRunTest( |
275 |
| - test_name=str(test), |
276 |
| - test_cmd=result.cmd.to_string(relative=True), |
277 |
| - test_duration=output.duration, |
278 |
| - test_failure=fail_text) |
279 |
| - |
280 |
| - def finished(self): |
281 |
| - self.outputter.FinishAndWrite(self.outfile) |
282 |
| - if self.outfile != sys.stdout: |
283 |
| - self.outfile.close() |
284 |
| - |
285 |
| - |
286 | 246 | class JsonTestProgressIndicator(ProgressIndicator):
|
287 | 247 | def __init__(self, json_test_results, arch, mode):
|
288 | 248 | super(JsonTestProgressIndicator, self).__init__()
|
|
0 commit comments