diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -49,9 +49,6 @@ from lldbsuite.test_event.event_builder import EventBuilder from ..support import seven -def get_dotest_invocation(): - return ' '.join(sys.argv) - def is_exe(fpath): """Returns true if fpath is an executable.""" @@ -220,7 +217,6 @@ parser = dotest_args.create_parser() args = parser.parse_args() except: - print(get_dotest_invocation()) raise if args.unset_env_varnames: @@ -243,10 +239,6 @@ if args.set_inferior_env_vars: lldbtest_config.inferior_env = ' '.join(args.set_inferior_env_vars) - # Only print the args if being verbose. - if args.v: - print(get_dotest_invocation()) - if args.h: do_help = True @@ -1081,7 +1073,6 @@ "\nSession logs for test failures/errors/unexpected successes" " will go into directory '%s'\n" % configuration.sdir_name) - sys.stderr.write("Command invoked: %s\n" % get_dotest_invocation()) # # Invoke the default TextTestRunner to run the test suite