[llvm] [lit] Add --report-failures-only option for lit test reports (PR #115439)
Rakshit Patel via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 8 09:51:56 PST 2024
================
@@ -22,6 +22,8 @@ def __init__(self, output_file):
self.output_file = output_file
# Set by the option parser later.
self.use_unique_output_file_name = False
+ self.skipped_codes = {lit.Test.EXCLUDED,
+ lit.Test.SKIPPED, lit.Test.UNSUPPORTED}
----------------
rpatel321 wrote:
This made it's way over from patch #1 (https://reviews.llvm.org/D143516). However, since it's not required for my changes, I will split it into another PR as you are suggesting.
https://github.com/llvm/llvm-project/pull/115439
More information about the llvm-commits
mailing list