From: yangguo@chromium.org Date: Fri, 31 Aug 2012 12:02:02 +0000 (+0000) Subject: Disable test that triggers known bug. X-Git-Tag: upstream/4.7.83~16069 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ddfae013a69d2f5a858ba6607368c207a391371e;p=platform%2Fupstream%2Fv8.git Disable test that triggers known bug. BUG=v8:2261 Review URL: https://chromiumcodereview.appspot.com/10910029 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@12418 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/test/mjsunit/object-define-property.js b/test/mjsunit/object-define-property.js index 6771412..bd104aa 100644 --- a/test/mjsunit/object-define-property.js +++ b/test/mjsunit/object-define-property.js @@ -1057,6 +1057,8 @@ assertEquals(999, o[999]); // Regression test: Bizzare behavior on non-strict arguments object. +// TODO(mstarzinger): Tests disabled, see bug 2261 +/* (function test(arg0) { // Here arguments[0] is a fast alias on arg0. Object.defineProperty(arguments, "0", { @@ -1075,7 +1077,7 @@ assertEquals(999, o[999]); assertEquals(2, arg0); assertEquals(3, arguments[0]); })(0); - +*/ // Regression test: We should never observe the hole value. var objectWithGetter = {};