[llvm] [Debugify] Add 'error-test' mode for the debugify report script, for CI (PR #147574)
Jeremy Morse via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 14 03:32:26 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")
----------------
jmorse wrote:
I feel "short" or "reduced" or "summary" would be better for the option name, as "compress" makes me (and others?) think about file compression. YMMV, but if it's not too hard a change IMO it'd be better to not use "compress".
https://github.com/llvm/llvm-project/pull/147574
More information about the llvm-commits
mailing list