[llvm] [Debugify] Add 'error-test' mode for the debugify report script, for CI (PR #147574)
Stephen Tozer via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 14 04:50:45 PDT 2025
================
@@ -430,9 +478,16 @@ def get_json_chunk(file, start, size):
# Parse the program arguments.
def parse_program_args(parser):
parser.add_argument("file_name", type=str, help="json file to process")
- parser.add_argument("html_file", type=str, help="html file to output data")
- parser.add_argument(
- "-compress", action="store_true", help="create reduced html report"
+ parser.add_argument("--compress", action="store_true", help="create reduced report")
----------------
SLTozer wrote:
I don't wholly disagree, but this is a pre-existing flag so I'd prefer not to change it too much in this PR; the only reason for the change here is consistency with the other flags using `--` instead of `-`.
https://github.com/llvm/llvm-project/pull/147574
More information about the llvm-commits
mailing list