Skip to content

Commit bd019bd

Browse files
Tamer TasCommit Bot
Tamer Tas
authored and
Commit Bot
committed
[testrunner] delete ancient junit compatible format support
Testrunner has ancient support for JUnit compatible XML output. This CL removes this old feature. [email protected],[email protected],[email protected] CC=​[email protected] Bug: v8:8728 Change-Id: I7e1beb011dbaec3aa1a27398a5c52abdd778eaf0 Reviewed-on: https://chromium-review.googlesource.com/c/1430065 Reviewed-by: Jakob Gruber <[email protected]> Reviewed-by: Michael Starzinger <[email protected]> Commit-Queue: Tamer Tas <[email protected]> Cr-Commit-Position: refs/heads/master@{#59045}
1 parent cf88fe3 commit bd019bd

File tree

3 files changed

+0
-95
lines changed

3 files changed

+0
-95
lines changed

tools/testrunner/base_runner.py

-6
Original file line numberDiff line numberDiff line change
@@ -318,9 +318,6 @@ def _add_parser_default_options(self, parser):
318318
"color, mono)")
319319
parser.add_option("--json-test-results",
320320
help="Path to a file for storing json results.")
321-
parser.add_option("--junitout", help="File name of the JUnit output")
322-
parser.add_option("--junittestsuite", default="v8tests",
323-
help="The testsuite name in the JUnit output file")
324321
parser.add_option("--exit-after-n-failures", type="int", default=100,
325322
help="Exit after the first N failures instead of "
326323
"running all tests. Pass 0 to disable this feature.")
@@ -759,9 +756,6 @@ def _get_shard_info(self, options):
759756

760757
def _create_progress_indicators(self, options):
761758
procs = [PROGRESS_INDICATORS[options.progress]()]
762-
if options.junitout:
763-
procs.append(progress.JUnitTestProgressIndicator(options.junitout,
764-
options.junittestsuite))
765759
if options.json_test_results:
766760
procs.append(progress.JsonTestProgressIndicator(
767761
options.json_test_results,

tools/testrunner/local/junit_output.py

-49
This file was deleted.

tools/testrunner/testproc/progress.py

-40
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import time
99

1010
from . import base
11-
from ..local import junit_output
1211

1312

1413
def print_failure_header(test):
@@ -244,45 +243,6 @@ def _clear_line(self, last_length):
244243
print ("\r" + (" " * last_length) + "\r"),
245244

246245

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-
286246
class JsonTestProgressIndicator(ProgressIndicator):
287247
def __init__(self, json_test_results, arch, mode):
288248
super(JsonTestProgressIndicator, self).__init__()

0 commit comments

Comments
 (0)