summaryrefslogtreecommitdiff
path: root/evergreen/resmoke_tests_execute.sh
diff options
context:
space:
mode:
authorMikhail Shchatko <mikhail.shchatko@mongodb.com>2023-05-09 06:23:55 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-05-09 07:25:37 +0000
commitd4e78b7d757ccf1225bcd87d44ade39d1ce38586 (patch)
treee8f6d790c53d2ec93faa7a350509cb6d5e5d2249 /evergreen/resmoke_tests_execute.sh
parenteabad5801309af6d80f91f01557b7f3d0b50fab3 (diff)
downloadmongo-d4e78b7d757ccf1225bcd87d44ade39d1ce38586.tar.gz
SERVER-76651 Switch to using db-contrib-tool symbolize command in resmoke
Diffstat (limited to 'evergreen/resmoke_tests_execute.sh')
-rw-r--r--evergreen/resmoke_tests_execute.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/evergreen/resmoke_tests_execute.sh b/evergreen/resmoke_tests_execute.sh
index 37dc3773e71..6a812a9e32e 100644
--- a/evergreen/resmoke_tests_execute.sh
+++ b/evergreen/resmoke_tests_execute.sh
@@ -14,6 +14,11 @@ if [[ ${disable_unit_tests} = "false" && ! -f ${skip_tests} ]]; then
# activate the virtualenv if it has been set up
activate_venv
+ # Install db-contrib-tool to symbolize crashes during resmoke suite runs
+ # This is not supported on Windows and MacOS, so doing it only on Linux
+ if [ "$(uname)" == "Linux" ]; then
+ setup_db_contrib_tool
+ fi
if [[ -f "patch_test_tags.tgz" ]]; then
tags_build_variant="${build_variant}"