Revision: 20009
Author: [email protected]
Date: Mon Mar 17 17:00:48 2014 UTC
Log: Fix mjsunit/compiler/concurrent-invalidate-transition-map.js test.
BUG=v8:3156
LOG=N
[email protected]
Review URL: https://codereview.chromium.org/180053003
http://code.google.com/p/v8/source/detail?r=20009
Modified:
/branches/bleeding_edge/test/mjsunit/compiler/concurrent-invalidate-transition-map.js
/branches/bleeding_edge/test/mjsunit/mjsunit.status
=======================================
---
/branches/bleeding_edge/test/mjsunit/compiler/concurrent-invalidate-transition-map.js
Mon Dec 23 14:30:35 2013 UTC
+++
/branches/bleeding_edge/test/mjsunit/compiler/concurrent-invalidate-transition-map.js
Mon Mar 17 17:00:48 2014 UTC
@@ -43,9 +43,10 @@
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();
=======================================
--- /branches/bleeding_edge/test/mjsunit/mjsunit.status Mon Mar 17 08:30:04
2014 UTC
+++ /branches/bleeding_edge/test/mjsunit/mjsunit.status Mon Mar 17 17:00:48
2014 UTC
@@ -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],
--
--
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.