From 12d552607487faa7fc457577845c2e3623b21541 Mon Sep 17 00:00:00 2001 From: Max Hirschhorn Date: Fri, 14 Apr 2017 17:32:39 -0400 Subject: SERVER-28785 Log resmoke.py invocation before running tests. --- buildscripts/resmoke.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/buildscripts/resmoke.py b/buildscripts/resmoke.py index ca3eee80f85..b6d11785030 100755 --- a/buildscripts/resmoke.py +++ b/buildscripts/resmoke.py @@ -145,6 +145,10 @@ def main(): resmoke_logger.info("Suites available to execute:\n%s", "\n".join(suite_names)) sys.exit(0) + # Log the command line arguments specified to resmoke.py to make it easier to re-run the + # resmoke.py invocation used by an Evergreen task. + resmoke_logger.info("resmoke.py invocation: %s", " ".join(sys.argv)) + interrupted = False suites = resmokelib.parser.get_suites(values, args) -- cgit v1.2.1