From 5cd4a9b78d14b489ee182f0102f7602c1288bb9d Mon Sep 17 00:00:00 2001 From: "sgjesse@chromium.org" Date: Thu, 12 Aug 2010 14:38:50 +0000 Subject: [PATCH] Remove runtime function from fuzzing Don't do fuzzing of _IsStringWrapperSafeForDefaultValueOf as it expects a non-smi as its first argument. Review URL: http://codereview.chromium.org/3109010 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5253 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- test/mjsunit/fuzz-natives.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/mjsunit/fuzz-natives.js b/test/mjsunit/fuzz-natives.js index 66841bbd6..11ac2e0be 100644 --- a/test/mjsunit/fuzz-natives.js +++ b/test/mjsunit/fuzz-natives.js @@ -174,6 +174,9 @@ var knownProblems = { // 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 = { -- 2.34.1