Commit b0067e9c authored by rossberg@chromium.org's avatar rossberg@chromium.org

Disable test that triggers known bug.

R=verwaest@chromium.org
BUG=v8:2261

Review URL: https://chromiumcodereview.appspot.com/10896005

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@12399 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent ccc827a6
......@@ -158,6 +158,30 @@ test_toarr(toarr1);
test_toarr(toarr2);
// Test that arguments access from inlined function uses correct values.
// TODO(mstarzinger): Tests disabled, see bug 2261
/*
(function () {
function inner(x, y) {
"use strict";
x = 10;
y = 20;
for (var i = 0; i < 1; i++) {
for (var j = 1; j <= arguments.length; j++) {
return arguments[arguments.length - j];
}
}
}
function outer(x, y) {
return inner(x, y);
}
%OptimizeFunctionOnNextCall(outer);
%OptimizeFunctionOnNextCall(inner);
assertEquals(2, outer(1, 2));
})();
(function () {
function inner(x, y) {
"use strict";
......@@ -180,3 +204,4 @@ test_toarr(toarr2);
%OptimizeFunctionOnNextCall(outer);
assertEquals(2, outer(1, 2));
})();
*/
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