Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions llvm/utils/lit/lit/cl_arguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,15 @@ def parse_args():
type=lit.reports.TimeTraceReport,
help="Write Chrome tracing compatible JSON to the specified file",
)
# This option only exists for the benefit of LLVM's Buildkite CI pipelines.
# As soon as it is not needed, it should be removed. Its help text would be:
# When enabled, lit will add a unique element to the output file name,
# before the extension. For example "results.xml" will become
# "results.<something>.xml". The "<something>" is not ordered in any
# way and is chosen so that existing files are not overwritten. [Default: Off]
execution_group.add_argument(
"--use-unique-output-file-name",
help="When enabled, lit will add a unique element to the output file name, "
'before the extension. For example "results.xml" will become '
'"results.<something>.xml". The "<something>" is not ordered in any '
"way and is chosen so that existing files are not overwritten. [Default: Off]",
help=argparse.SUPPRESS,
action="store_true",
)
execution_group.add_argument(
Expand Down
Loading