[test] Increase timeout for full debug and predictable
Bug: v8:9145 Change-Id: Idb1a838666ea21cb260a141929fd80b400913836 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1596731 Reviewed-by: Tamer Tas <tmrts@chromium.org> Commit-Queue: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#61262}
This commit is contained in:
parent
17e7cf55f7
commit
c1e08aa52d
2
BUILD.gn
2
BUILD.gn
@ -1291,6 +1291,7 @@ action("v8_dump_build_config") {
|
||||
"$root_out_dir/v8_build_config.json",
|
||||
]
|
||||
is_gcov_coverage = v8_code_coverage && !is_clang
|
||||
is_full_debug = v8_enable_debugging_features && !v8_optimized_debug
|
||||
args = [
|
||||
rebase_path("$root_out_dir/v8_build_config.json", root_build_dir),
|
||||
"current_cpu=\"$current_cpu\"",
|
||||
@ -1301,6 +1302,7 @@ action("v8_dump_build_config") {
|
||||
"is_clang=$is_clang",
|
||||
"is_component_build=$is_component_build",
|
||||
"is_debug=$v8_enable_debugging_features",
|
||||
"is_full_debug=$is_full_debug",
|
||||
"is_gcov_coverage=$is_gcov_coverage",
|
||||
"is_msan=$is_msan",
|
||||
"is_tsan=$is_tsan",
|
||||
|
@ -185,6 +185,7 @@ class BuildConfig(object):
|
||||
self.is_android = build_config['is_android']
|
||||
self.is_clang = build_config['is_clang']
|
||||
self.is_debug = build_config['is_debug']
|
||||
self.is_full_debug = build_config['is_full_debug']
|
||||
self.msan = build_config['is_msan']
|
||||
self.no_i18n = not build_config['v8_enable_i18n_support']
|
||||
self.no_snap = not build_config['v8_use_snapshot']
|
||||
@ -722,9 +723,11 @@ class BaseTestRunner(object):
|
||||
if self.build_config.lite_mode:
|
||||
factor *= 2
|
||||
if self.build_config.predictable:
|
||||
factor *= 2.5
|
||||
factor *= 3
|
||||
if self.build_config.use_sanitizer:
|
||||
factor *= 1.5
|
||||
if self.build_config.is_full_debug:
|
||||
factor *= 2
|
||||
|
||||
return factor
|
||||
|
||||
|
@ -7,6 +7,7 @@
|
||||
"is_clang": true,
|
||||
"is_component_build": false,
|
||||
"is_debug": false,
|
||||
"is_full_debug": false,
|
||||
"is_gcov_coverage": false,
|
||||
"is_ubsan_vptr": false,
|
||||
"is_msan": false,
|
||||
|
@ -7,6 +7,7 @@
|
||||
"is_clang": true,
|
||||
"is_component_build": false,
|
||||
"is_debug": false,
|
||||
"is_full_debug": false,
|
||||
"is_gcov_coverage": false,
|
||||
"is_ubsan_vptr": false,
|
||||
"is_msan": false,
|
||||
|
Loading…
Reference in New Issue
Block a user