Reviewers: Vyacheslav Egorov, Message: This wil hopelully make the debug bots rgeen.
Description: Remove runtime function from fuzzing Don't do fuzzing of _IsStringWrapperSafeForDefaultValueOf as it expects a non-smi as its first argument. Please review this at http://codereview.chromium.org/3109010/show SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M test/mjsunit/fuzz-natives.js Index: test/mjsunit/fuzz-natives.js =================================================================== --- test/mjsunit/fuzz-natives.js (revision 5238) +++ test/mjsunit/fuzz-natives.js (working copy) @@ -174,6 +174,9 @@ // This function performs some checks compile time (it requires its first // argument to be a compile time smi). "_GetFromCache": true, + + // This function expects its first argument to be a non-smi. + "_IsStringWrapperSafeForDefaultValueOf" : true }; var currentlyUncallable = { -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
