Commit 8c98e07c authored by Michael Achenbach's avatar Michael Achenbach Committed by Commit Bot

[test] Auto-detect verify-predictable builds

Bug: v8:6917
Change-Id: Ia768c9aaf71e70d1376ae21a35fd539a7315b0cd
Reviewed-on: https://chromium-review.googlesource.com/725802
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Reviewed-by: 's avatarSergiy Byelozyorov <sergiyb@chromium.org>
Cr-Commit-Position: refs/heads/master@{#48717}
parent f5d09025
...@@ -849,6 +849,7 @@ action("v8_dump_build_config") { ...@@ -849,6 +849,7 @@ action("v8_dump_build_config") {
"is_ubsan_vptr=$is_ubsan_vptr", "is_ubsan_vptr=$is_ubsan_vptr",
"target_cpu=\"$target_cpu\"", "target_cpu=\"$target_cpu\"",
"v8_enable_i18n_support=$v8_enable_i18n_support", "v8_enable_i18n_support=$v8_enable_i18n_support",
"v8_enable_verify_predictable=$v8_enable_verify_predictable",
"v8_target_cpu=\"$v8_target_cpu\"", "v8_target_cpu=\"$v8_target_cpu\"",
"v8_use_snapshot=$v8_use_snapshot", "v8_use_snapshot=$v8_use_snapshot",
] ]
......
...@@ -2557,6 +2557,7 @@ ...@@ -2557,6 +2557,7 @@
'is_ubsan_vptr=0', 'is_ubsan_vptr=0',
'target_cpu="<(target_arch)"', 'target_cpu="<(target_arch)"',
'v8_enable_i18n_support=<(v8_enable_i18n_support)', 'v8_enable_i18n_support=<(v8_enable_i18n_support)',
'v8_enable_verify_predictable=<(v8_enable_verify_predictable)',
'v8_target_cpu="<(v8_target_arch)"', 'v8_target_cpu="<(v8_target_arch)"',
'v8_use_snapshot=<(v8_use_snapshot)', 'v8_use_snapshot=<(v8_use_snapshot)',
], ],
......
...@@ -317,6 +317,7 @@ class BaseTestRunner(object): ...@@ -317,6 +317,7 @@ class BaseTestRunner(object):
('msan', build_config["is_msan"]), ('msan', build_config["is_msan"]),
('no_i18n', not build_config["v8_enable_i18n_support"]), ('no_i18n', not build_config["v8_enable_i18n_support"]),
('no_snap', not build_config["v8_use_snapshot"]), ('no_snap', not build_config["v8_use_snapshot"]),
('predictable', build_config["v8_enable_verify_predictable"]),
('tsan', build_config["is_tsan"]), ('tsan', build_config["is_tsan"]),
('ubsan_vptr', build_config["is_ubsan_vptr"]), ('ubsan_vptr', build_config["is_ubsan_vptr"]),
): ):
......
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