From: svenpanne@chromium.org Date: Fri, 3 Jan 2014 12:21:48 +0000 (+0000) Subject: Unbreak build. X-Git-Tag: upstream/4.7.83~11265 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=08354f8f071e3c8fd1faf3cbf76ff3b846d44579;p=platform%2Fupstream%2Fv8.git Unbreak build. Test/update/commit race condition... >:-( TBR=ulan@chromium.org Review URL: https://codereview.chromium.org/123383003 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@18450 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc index 85ba7a9..eeb7865 100644 --- a/test/cctest/test-api.cc +++ b/test/cctest/test-api.cc @@ -10121,7 +10121,8 @@ THREADED_TEST(Regress269562) { v8::Local sym = v8::Symbol::New(context->GetIsolate(), "s1"); o1->Set(sym, v8_num(3)); - o1->SetHiddenValue(v8_str("h1"), v8::Integer::New(2013)); + o1->SetHiddenValue(v8_str("h1"), + v8::Integer::New(context->GetIsolate(), 2013)); // Call the runtime version of GetLocalPropertyNames() on // the natively created object through JavaScript.