summaryrefslogtreecommitdiff
path: root/buildscripts/resmoke.py
diff options
context:
space:
mode:
authorMax Hirschhorn <max.hirschhorn@mongodb.com>2017-04-14 17:32:39 -0400
committerMax Hirschhorn <max.hirschhorn@mongodb.com>2017-04-14 17:32:39 -0400
commit12d552607487faa7fc457577845c2e3623b21541 (patch)
tree30d4c306532d742325c83669a89a3640546a4d01 /buildscripts/resmoke.py
parent184df63e8e87a9b6ebdb9d86e7b652422a8cf1a4 (diff)
downloadmongo-12d552607487faa7fc457577845c2e3623b21541.tar.gz
SERVER-28785 Log resmoke.py invocation before running tests.
Diffstat (limited to 'buildscripts/resmoke.py')
-rwxr-xr-xbuildscripts/resmoke.py4
1 files changed, 4 insertions, 0 deletions
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)