Reviewers: Jakob,
Message:
Committed patchset #1 (id:1) manually as
e32f9cfc10dc9b7591a12fe1621c35ff86ab9cc0.
Description:
Ensure we enable/disable the bootstrapping flag
[email protected]
Committed:
https://chromium.googlesource.com/v8/v8/+/e32f9cfc10dc9b7591a12fe1621c35ff86ab9cc0
Please review this at https://codereview.chromium.org/1213683005/
Base URL: https://chromium.googlesource.com/v8/v8.git@master
Affected files (+3, -1 lines):
M test/cctest/test-api-interceptors.cc
Index: test/cctest/test-api-interceptors.cc
diff --git a/test/cctest/test-api-interceptors.cc
b/test/cctest/test-api-interceptors.cc
index
161eb0c7c471640e4e0b7b4c785f7292f2457a12..ce30a18b5688e2ff7e95de985f725ce6c39ef103
100644
--- a/test/cctest/test-api-interceptors.cc
+++ b/test/cctest/test-api-interceptors.cc
@@ -1007,7 +1007,7 @@ THREADED_TEST(PropertyHandlerInPrototype) {
}
-bool is_bootstrapping = true;
+bool is_bootstrapping = false;
static void PrePropertyHandlerGet(
Local<Name> key, const v8::PropertyCallbackInfo<v8::Value>& info) {
ApiTestFuzzer::Fuzz();
@@ -2604,7 +2604,9 @@ THREADED_TEST(InterceptorICGetterExceptions) {
// Generous limit for bootstrapping.
templ->SetHandler(
v8::NamedPropertyHandlerConfiguration(InterceptorICExceptionGetter));
+ is_bootstrapping = true;
LocalContext context(0, templ, v8::Handle<Value>());
+ is_bootstrapping = false;
call_ic_function3 = v8_compile("function h(x) { return x; }; h")->Run();
v8::Handle<Value> value = CompileRun(
"function f() {"
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.