diff --git a/BUILD.gn b/BUILD.gn index 6eb56e0ada..eaba89b41a 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -849,6 +849,7 @@ action("v8_dump_build_config") { "is_ubsan_vptr=$is_ubsan_vptr", "target_cpu=\"$target_cpu\"", "v8_enable_i18n_support=$v8_enable_i18n_support", + "v8_enable_verify_predictable=$v8_enable_verify_predictable", "v8_target_cpu=\"$v8_target_cpu\"", "v8_use_snapshot=$v8_use_snapshot", ] diff --git a/src/v8.gyp b/src/v8.gyp index 9e7e9573ad..f2feba739a 100644 --- a/src/v8.gyp +++ b/src/v8.gyp @@ -2557,6 +2557,7 @@ 'is_ubsan_vptr=0', 'target_cpu="<(target_arch)"', 'v8_enable_i18n_support=<(v8_enable_i18n_support)', + 'v8_enable_verify_predictable=<(v8_enable_verify_predictable)', 'v8_target_cpu="<(v8_target_arch)"', 'v8_use_snapshot=<(v8_use_snapshot)', ], diff --git a/tools/testrunner/base_runner.py b/tools/testrunner/base_runner.py index 11c32ef68c..78fbac1881 100644 --- a/tools/testrunner/base_runner.py +++ b/tools/testrunner/base_runner.py @@ -317,6 +317,7 @@ class BaseTestRunner(object): ('msan', build_config["is_msan"]), ('no_i18n', not build_config["v8_enable_i18n_support"]), ('no_snap', not build_config["v8_use_snapshot"]), + ('predictable', build_config["v8_enable_verify_predictable"]), ('tsan', build_config["is_tsan"]), ('ubsan_vptr', build_config["is_ubsan_vptr"]), ):