summaryrefslogtreecommitdiff
path: root/evergreen/resmoke_tests_execute.sh
diff options
context:
space:
mode:
authorDaniel Moody <daniel.moody@mongodb.com>2022-07-13 21:33:28 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-07-13 22:34:55 +0000
commit18749f9e88ba9cfe5605530e3fa4b82922012f95 (patch)
treec6383499933d7483ec82e1179ffd5e1366f1a671 /evergreen/resmoke_tests_execute.sh
parentca6145312b0c00e7f8632d8b68c6acf7ccd0fba4 (diff)
downloadmongo-18749f9e88ba9cfe5605530e3fa4b82922012f95.tar.gz
SERVER-66968 add resmoke environment options to local usage text
Diffstat (limited to 'evergreen/resmoke_tests_execute.sh')
-rw-r--r--evergreen/resmoke_tests_execute.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/evergreen/resmoke_tests_execute.sh b/evergreen/resmoke_tests_execute.sh
index ce1ecc7b582..9e38c311cf2 100644
--- a/evergreen/resmoke_tests_execute.sh
+++ b/evergreen/resmoke_tests_execute.sh
@@ -112,6 +112,9 @@ if [[ ${disable_unit_tests} = "false" && ! -f ${skip_tests} ]]; then
suite_name=${suite}
fi
+ resmoke_env_options="${gcov_environment} ${lang_environment} ${san_options} ${snmp_config_path}"
+ echo $resmoke_env_options > resmoke_env_options.txt
+
# The "resmoke_wrapper" expansion is used by the 'burn_in_tests' task to wrap the resmoke.py
# invocation. It doesn't set any environment variables and should therefore come last in
# this list of expansions.
@@ -119,10 +122,7 @@ if [[ ${disable_unit_tests} = "false" && ! -f ${skip_tests} ]]; then
PATH="$path_value" \
AWS_PROFILE=${aws_profile_remote} \
eval \
- ${gcov_environment} \
- ${lang_environment} \
- ${san_options} \
- ${snmp_config_path} \
+ $resmoke_env_options \
${resmoke_wrapper} \
$python buildscripts/resmoke.py run \
${record_with} \