forked from OSchip/llvm-project
[lit] Add --show-xxx command line options
Provide `--show-xxx` flags for all non-failure result codes, just as we already do for `--show-xfail` and `--show-unsupported`. Reviewed By: jdenny Differential Revision: https://reviews.llvm.org/D82233
This commit is contained in:
parent
23084878e9
commit
f06d2420b7
|
@ -65,12 +65,18 @@ def parse_args():
|
|||
dest="useProgressBar",
|
||||
help="Do not use curses based progress bar",
|
||||
action="store_false")
|
||||
format_group.add_argument("--show-unsupported",
|
||||
help="Show unsupported tests",
|
||||
action="store_true")
|
||||
format_group.add_argument("--show-xfail",
|
||||
help="Show tests that were expected to fail",
|
||||
action="store_true")
|
||||
|
||||
# Note: this does not generate flags for user-defined result codes.
|
||||
success_codes = [c for c in lit.Test.ResultCode.all_codes()
|
||||
if not c.isFailure]
|
||||
for code in success_codes:
|
||||
format_group.add_argument(
|
||||
"--show-{}".format(code.name.lower()),
|
||||
dest="shown_codes",
|
||||
help="Show {} tests ({})".format(code.label.lower(), code.name),
|
||||
action="append_const",
|
||||
const=code,
|
||||
default=[])
|
||||
|
||||
execution_group = parser.add_argument_group("Test Execution")
|
||||
execution_group.add_argument("--path",
|
||||
|
@ -187,12 +193,6 @@ def parse_args():
|
|||
else:
|
||||
opts.shard = None
|
||||
|
||||
opts.show_results = set()
|
||||
if opts.show_unsupported:
|
||||
opts.show_results.add(lit.Test.UNSUPPORTED)
|
||||
if opts.show_xfail:
|
||||
opts.show_results.add(lit.Test.XFAIL)
|
||||
|
||||
opts.reports = filter(None, [opts.output, opts.xunit_xml_output])
|
||||
|
||||
return opts
|
||||
|
|
|
@ -265,15 +265,15 @@ def print_results(tests, elapsed, opts):
|
|||
tests_by_code[test.result.code].append(test)
|
||||
|
||||
for code in lit.Test.ResultCode.all_codes():
|
||||
print_group(tests_by_code[code], code, opts.show_results)
|
||||
print_group(tests_by_code[code], code, opts.shown_codes)
|
||||
|
||||
print_summary(tests_by_code, opts.quiet, elapsed)
|
||||
|
||||
|
||||
def print_group(tests, code, show_results):
|
||||
def print_group(tests, code, shown_codes):
|
||||
if not tests:
|
||||
return
|
||||
if not code.isFailure and code not in show_results:
|
||||
if not code.isFailure and code not in shown_codes:
|
||||
return
|
||||
print('*' * 20)
|
||||
print('{} Tests ({}):'.format(code.label, len(tests)))
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
RUN: false
|
|
@ -0,0 +1,6 @@
|
|||
import lit.formats
|
||||
config.name = 'show-result-codes'
|
||||
config.suffixes = ['.txt']
|
||||
config.test_format = lit.formats.ShTest()
|
||||
config.test_source_root = None
|
||||
config.test_exec_root = None
|
|
@ -0,0 +1 @@
|
|||
RUN: true
|
|
@ -0,0 +1,2 @@
|
|||
REQUIRES: missing-feature
|
||||
RUN: true
|
|
@ -0,0 +1,2 @@
|
|||
XFAIL: *
|
||||
RUN: false
|
|
@ -0,0 +1,21 @@
|
|||
# Test the --show-<result-code> {pass,unsupported,xfail,...} options.
|
||||
#
|
||||
# RUN: not %{lit} %{inputs}/show-result-codes | FileCheck %s --check-prefix=NONE
|
||||
# RUN: not %{lit} %{inputs}/show-result-codes --show-unsupported | FileCheck %s --check-prefix=ONE
|
||||
# RUN: not %{lit} %{inputs}/show-result-codes --show-pass --show-xfail | FileCheck %s --check-prefix=MULTIPLE
|
||||
|
||||
# Failing tests are always shown
|
||||
# NONE-NOT: Unsupported Tests (1)
|
||||
# NONE-NOT: Passed Tests (1)
|
||||
# NONE-NOT: Expectedly Failed Tests (1)
|
||||
# NONE: Failed Tests (1)
|
||||
|
||||
# ONE: Unsupported Tests (1)
|
||||
# ONE-NOT: Passed Tests (1)
|
||||
# ONE-NOT: Expectedly Failed Tests (1)
|
||||
# ONE: Failed Tests (1)
|
||||
|
||||
# MULTIPLE-NOT: Unsupported Tests (1)
|
||||
# MULTIPLE: Passed Tests (1)
|
||||
# MULTIPLE: Expectedly Failed Tests (1)
|
||||
# MULTIPLE: Failed Tests (1)
|
Loading…
Reference in New Issue