Skip to content

Commit 784e24e

Browse files
committed
Update documentation
1 parent e09e4f1 commit 784e24e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

llvm/docs/CommandGuide/lit.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,10 @@ EXECUTION OPTIONS
191191

192192
Write XUnit-compatible XML test reports to the specified file.
193193

194+
.. option:: --report-failures-only
195+
196+
Only include unresolved, timed out, failed and unexpectedly passed tests in the report.
197+
194198
.. option:: --resultdb-output RESULTDB_OUTPUT
195199

196200
Write LuCI ResultDB compatible JSON to the specified file.

llvm/utils/lit/lit/cl_arguments.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ def parse_args():
167167
)
168168
execution_group.add_argument(
169169
"--report-failures-only",
170-
help="When writing a test report, do not include results for "
171-
"tests that completed successfully or were not run",
170+
help="Only include unresolved, timed out, failed"
171+
" and unexpectedly passed tests in the report",
172172
action="store_true"
173173
)
174174
execution_group.add_argument(

0 commit comments

Comments
 (0)