scripts: Dropped -e/--exec shortform flag, now just --exec

Too much room for confusion, and potential flag conflicts in the future.
Note it already conflicted with -e/--error-* flags.

--exec is a rather technical flag anyways, and will probably be wrapped
in other ci/script scaffolding most of the time.
This commit is contained in:
Christopher Haster
2025-08-22 14:15:34 -05:00
parent be118ab93d
commit 2c67fb1ea2
2 changed files with 2 additions and 2 deletions

View File

@ -1715,7 +1715,7 @@ if __name__ == "__main__":
help="Paths to scripts to execute when dropping into gdb. "
"Defaults to %r." % GDB_SCRIPTS)
bench_parser.add_argument(
'-e', '--exec',
'--exec',
type=lambda e: e.split(),
help="Run under another executable.")
bench_parser.add_argument(

View File

@ -1750,7 +1750,7 @@ if __name__ == "__main__":
help="Paths to scripts to execute when dropping into gdb. "
"Defaults to %r." % GDB_SCRIPTS)
test_parser.add_argument(
'-e', '--exec',
'--exec',
type=lambda e: e.split(),
help="Run under another executable.")
test_parser.add_argument(