Commit 6f7afe50 authored by Ned Nguyen's avatar Ned Nguyen Committed by Commit Bot

Increase shard timeout limit for performance_test_suite to 10 hours

Bug: 906654
Change-Id: I08817df22c5043ec92ae51b7deeae15ceb1877ee
Reviewed-on: https://chromium-review.googlesource.com/c/1354690Reviewed-by: default avatarEmily Hanley <eyaich@chromium.org>
Reviewed-by: default avatarJohn Budorick <jbudorick@chromium.org>
Commit-Queue: Ned Nguyen <nednguyen@google.com>
Cr-Commit-Position: refs/heads/master@{#612239}
parent 5bab54a2
......@@ -113,7 +113,7 @@
}
],
"expiration": 7200,
"hard_timeout": 25200,
"hard_timeout": 36000,
"ignore_task_failure": false,
"io_timeout": 1800,
"shards": 25,
......@@ -204,7 +204,7 @@
}
],
"expiration": 7200,
"hard_timeout": 25200,
"hard_timeout": 36000,
"ignore_task_failure": false,
"io_timeout": 1800,
"shards": 7,
......@@ -250,7 +250,7 @@
}
],
"expiration": 7200,
"hard_timeout": 25200,
"hard_timeout": 36000,
"ignore_task_failure": false,
"io_timeout": 1800,
"shards": 7,
......
This diff is collapsed.
......@@ -956,7 +956,10 @@ def generate_performance_test(tester_config, test):
# supports swarming. It doesn't hurt.
'can_use_on_swarming_builders': True,
'expiration': 2 * 60 * 60, # 2 hours pending max
'hard_timeout': 7 * 60 * 60, # 7 hours timeout for full suite
# TODO(crbug.com/865538): once we have plenty of windows hardwares,
# to shards perf benchmarks on Win builders, reduce this hard timeout limit
# to ~2 hrs.
'hard_timeout': 10 * 60 * 60, # 10 hours timeout for full suite
'ignore_task_failure': False,
'io_timeout': 30 * 60, # 30 minutes
'dimension_sets': [
......
......@@ -121,7 +121,7 @@ class PerfDataGeneratorTest(unittest.TestCase):
'can_use_on_swarming_builders': True,
'expiration': 7200,
'io_timeout': 1800,
'hard_timeout': 25200,
'hard_timeout': 36000,
'upload_test_results': True,
'dimension_sets': [[{'os': 'SkyNet', 'pool': 'T-RIP'}]],
'shards': 1
......@@ -171,7 +171,7 @@ class PerfDataGeneratorTest(unittest.TestCase):
'can_use_on_swarming_builders': True,
'expiration': 7200,
'io_timeout': 1800,
'hard_timeout': 25200,
'hard_timeout': 36000,
'upload_test_results': True,
'dimension_sets': [[{'os': 'SkyNet', 'pool': 'T-RIP'}]],
'shards': 26
......@@ -220,7 +220,7 @@ class PerfDataGeneratorTest(unittest.TestCase):
'can_use_on_swarming_builders': True,
'expiration': 7200,
'io_timeout': 1800,
'hard_timeout': 25200,
'hard_timeout': 36000,
'upload_test_results': True,
'dimension_sets': [[{'os': 'SkyNet', 'pool': 'T-RIP'}]],
'shards': 26
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment