[Openmp-commits] [libcxx] [llvm] [openmp] [lit] Add a flag to disable lit time tests (PR #98270)
Vincent Lee via Openmp-commits
openmp-commits at lists.llvm.org
Fri Jul 19 17:26:14 PDT 2024
================
@@ -209,6 +204,17 @@ def parse_args():
action="store_true",
help="Exit with status zero even if some tests fail",
)
+ execution_test_time_group = execution_group.add_mutually_exclusive_group()
+ execution_test_time_group.add_argument(
+ "--skip-test-time-recording",
+ help="Do not track elapsed wall time for each test",
+ action="store_true",
+ )
+ execution_test_time_group.add_argument(
+ "--time-tests",
+ help="Track elapsed wall time for each test in a histogram",
----------------
thevinster wrote:
Clarified to say "printed in a histogram"
https://github.com/llvm/llvm-project/pull/98270
More information about the Openmp-commits
mailing list