summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilitsa Sotirova <militsa.sotirova@mongodb.com>2023-05-04 14:33:00 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-05-04 14:56:30 +0000
commit851880fa64e52deeb7f46690572d3e5953fd7d77 (patch)
treea4529fa9d83ecb22f97c59e8c8d6484110feb88d
parenta1651acc96eaf979c8ecd1fb1967b8139b9b717c (diff)
downloadmongo-851880fa64e52deeb7f46690572d3e5953fd7d77.tar.gz
SERVER-76600 Increase timeouts for aggregation_timeseries_fuzzer on tsan/asan
-rwxr-xr-xbuildscripts/evergreen_task_timeout.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/buildscripts/evergreen_task_timeout.py b/buildscripts/evergreen_task_timeout.py
index e4a2d8b55bd..e3faae0c8f7 100755
--- a/buildscripts/evergreen_task_timeout.py
+++ b/buildscripts/evergreen_task_timeout.py
@@ -57,7 +57,10 @@ SPECIFIC_TASK_OVERRIDES = {
"linux-64-repeated-execution": {UNITTEST_TASK: 10 * UNITTESTS_TIMEOUT},
# some of the a/ub/t san variants need a little extra time
"enterprise-ubuntu2004-debug-tsan": {UNITTEST_TASK: 2 * UNITTESTS_TIMEOUT},
- "ubuntu1804-asan": {UNITTEST_TASK: 2 * UNITTESTS_TIMEOUT},
+ "ubuntu1804-asan": {
+ UNITTEST_TASK: 2 * UNITTESTS_TIMEOUT,
+ "aggregation_timeseries_fuzzer": timedelta(hours=2, minutes=30),
+ },
"ubuntu1804-ubsan": {UNITTEST_TASK: 2 * UNITTESTS_TIMEOUT},
"ubuntu1804-debug-asan": {UNITTEST_TASK: 2 * UNITTESTS_TIMEOUT},
"ubuntu1804-debug-aubsan-lite": {UNITTEST_TASK: 2 * UNITTESTS_TIMEOUT},