Commit 2cb4e78e authored by ulan@chromium.org's avatar ulan@chromium.org

Fix mjsunit/compiler/concurrent-invalidate-transition-map.js test.

BUG=v8:3156
LOG=N
R=yangguo@chromium.org

Review URL: https://codereview.chromium.org/180053003

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@20009 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 06a444a1
......@@ -43,9 +43,10 @@ function new_object() {
function add_field(obj) {
obj.c = 3;
}
add_field(new_object());
add_field(new_object());
var obj1 = new_object();
var obj2 = new_object();
add_field(obj1);
add_field(obj2);
%OptimizeFunctionOnNextCall(add_field, "concurrent");
var o = new_object();
......
......@@ -176,9 +176,6 @@
# BUG(v8:3147). It works on other architectures by accident.
'regress/regress-conditional-position': [FAIL],
# BUG(v8:3156): Fails on gc stress bots.
'compiler/concurrent-invalidate-transition-map': [PASS, ['gc_stress == True', FAIL]],
# Slow tests.
'array-concat': [PASS, SLOW],
'array-constructor': [PASS, SLOW],
......
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