Everywhere: Remove uneeded short option argument where possible

This commit is contained in:
Shannon Booth 2024-04-21 08:34:56 +12:00 committed by Andreas Kling
parent 88b343061e
commit 1ec6399c00
Notes: sideshowbarker 2024-07-17 18:46:30 +09:00
21 changed files with 41 additions and 41 deletions

View file

@ -115,7 +115,7 @@ int main(int argc, char** argv)
});
args_parser.add_option(print_json, "Show results as JSON", "json", 'j');
args_parser.add_option(per_file, "Show detailed per-file results as JSON (implies -j)", "per-file", 0);
args_parser.add_option(per_file, "Show detailed per-file results as JSON (implies -j)", "per-file");
args_parser.add_option(g_collect_on_every_allocation, "Collect garbage after every allocation", "collect-often", 'g');
args_parser.add_option(JS::Bytecode::g_dump_bytecode, "Dump the bytecode", "dump-bytecode", 'd');
args_parser.add_option(test_glob, "Only run tests matching the given glob", "filter", 'f', "glob");