summaryrefslogtreecommitdiff
path: root/buildscripts/burn_in_tests.py
diff options
context:
space:
mode:
authorJason Chan <jason.chan@mongodb.com>2020-02-11 15:24:35 +0000
committerevergreen <evergreen@mongodb.com>2020-02-11 15:24:35 +0000
commit90282569575ca7f5e37fa0da037de353053c5604 (patch)
tree24336e78243984d6a766a288e7def657df2a71fb /buildscripts/burn_in_tests.py
parentfc5a4d987ca2ee86d18614183de7b0a0e75c5a45 (diff)
downloadmongo-90282569575ca7f5e37fa0da037de353053c5604.tar.gz
SERVER-46064 Strip the gen-suffix of task names when checking if tasks should be blacklisted from multiversion burn in
Diffstat (limited to 'buildscripts/burn_in_tests.py')
-rw-r--r--buildscripts/burn_in_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildscripts/burn_in_tests.py b/buildscripts/burn_in_tests.py
index 846170f4e00..2cc09309329 100644
--- a/buildscripts/burn_in_tests.py
+++ b/buildscripts/burn_in_tests.py
@@ -582,7 +582,8 @@ def create_generate_tasks_config(
for index, test in enumerate(test_list):
if task in evg_project_config.get_task_names_by_tag(RANDOM_MULTIVERSION_REPLSETS_TAG):
# Exclude files that should be blacklisted from multiversion testing.
- files_to_exclude = gen_multiversion.get_exclude_files(task, TASK_PATH_SUFFIX)
+ task_name = gen_resmoke.remove_gen_suffix(task)
+ files_to_exclude = gen_multiversion.get_exclude_files(task_name, TASK_PATH_SUFFIX)
if test in files_to_exclude:
LOGGER.debug("Files to exclude", files_to_exclude=files_to_exclude, test=test,
suite=task)