diff options
author | Zituo Jin <zituo.jin@mongodb.com> | 2021-11-11 22:20:16 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-11-11 23:14:21 +0000 |
commit | ae2572b51886c23ff7c70dad8bf13557e3af2d32 (patch) | |
tree | b1c04f8ef21c6d32c08344824baefff46dce8b78 /evergreen | |
parent | bf817cb2c73a75eb51c5ff7de327b6d2cdeccbef (diff) | |
download | mongo-ae2572b51886c23ff7c70dad8bf13557e3af2d32.tar.gz |
SERVER-61331 Change includeWithAllTags to includeWithAnyTags
Diffstat (limited to 'evergreen')
-rw-r--r-- | evergreen/resmoke_tests_execute.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/evergreen/resmoke_tests_execute.sh b/evergreen/resmoke_tests_execute.sh index 23c04231b24..fa33383c34d 100644 --- a/evergreen/resmoke_tests_execute.sh +++ b/evergreen/resmoke_tests_execute.sh @@ -33,7 +33,7 @@ if [[ ${disable_unit_tests} = "false" && ! -f ${skip_tests} ]]; then calculated_tags_file_path="failedtesttags/${tags_build_variant}/${display_task_name}.yml" if [[ -f $calculated_tags_file_path ]]; then - extra_args="$extra_args --tagFile=failedtesttags/${tags_build_variant}/${display_task_name}.yml --includeWithAllTags=recent_failure,recent_change" + extra_args="$extra_args --tagFile=failedtesttags/${tags_build_variant}/${display_task_name}.yml --includeWithAnyTags=recent_failure,recent_change" else echo "calculated tags file does not exist: $calculated_tags_file_path" fi |