diff options
author | Rakshit Patel <rakshit.patel@sony.com> | 2024-11-13 00:30:33 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-13 08:30:33 +0000 |
commit | c63e83f49575c024cf89fce9bc95d64988f3177b (patch) | |
tree | d3828b1b0015e775df04eb4500ffb71b17fdec24 /llvm/docs/CommandGuide | |
parent | 7a1fdbb9c0f3becdbe539f0518d182f56a9f99f8 (diff) | |
download | llvm-c63e83f49575c024cf89fce9bc95d64988f3177b.zip llvm-c63e83f49575c024cf89fce9bc95d64988f3177b.tar.gz llvm-c63e83f49575c024cf89fce9bc95d64988f3177b.tar.bz2 |
[lit] Add --report-failures-only option for lit test reports (#115439)
- Add option (--report-failures-only) to generate a reduced report for
lit tests that only includes failing tests
- This is a continuation of proposed patches by @gregbedwell here:
- https://reviews.llvm.org/D143516
- https://reviews.llvm.org/D143519
---------
Co-authored-by: Greg Bedwell <greg.bedwell@sony.com>
Co-authored-by: James Henderson <James.Henderson@sony.com>
Diffstat (limited to 'llvm/docs/CommandGuide')
-rw-r--r-- | llvm/docs/CommandGuide/lit.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/docs/CommandGuide/lit.rst b/llvm/docs/CommandGuide/lit.rst index af8a1a0..8c0e275 100644 --- a/llvm/docs/CommandGuide/lit.rst +++ b/llvm/docs/CommandGuide/lit.rst @@ -191,6 +191,10 @@ EXECUTION OPTIONS Write XUnit-compatible XML test reports to the specified file. +.. option:: --report-failures-only + + Only include unresolved, timed out, failed and unexpectedly passed tests in the report. + .. option:: --resultdb-output RESULTDB_OUTPUT Write LuCI ResultDB compatible JSON to the specified file. |