0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00

SERVER-28785 Log resmoke.py invocation before running tests.

This commit is contained in:
Max Hirschhorn 2017-04-14 17:32:39 -04:00
parent 184df63e8e
commit 12d5526074

View File

@ -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)