Exclude LoadMutableDouble and FunctionBindArguments from fuzzing.
BUG=409542,410262 LOG=N R=yangguo@chromium.org Review URL: https://codereview.chromium.org/535153002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23663 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
f7d5558a7a
commit
7572e779d0
@ -1,13 +0,0 @@
|
||||
// Copyright 2014 the V8 project authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
// Flags: --allow-natives-syntax
|
||||
|
||||
function f() {}
|
||||
%FunctionBindArguments(f, {}, undefined, 1);
|
||||
|
||||
f();
|
||||
f();
|
||||
%OptimizeFunctionOnNextCall(f);
|
||||
f();
|
@ -1,8 +0,0 @@
|
||||
// Copyright 2014 the V8 project authors. All rights reserved.
|
||||
// AUTO-GENERATED BY tools/generate-runtime-tests.py, DO NOT MODIFY
|
||||
// Flags: --allow-natives-syntax --harmony --harmony-proxies
|
||||
var _bound_function = function() {};
|
||||
var _bindee = new Object();
|
||||
var arg2 = undefined;
|
||||
var _new_length = 1.5;
|
||||
%FunctionBindArguments(_bound_function, _bindee, arg2, _new_length);
|
@ -1,6 +0,0 @@
|
||||
// Copyright 2014 the V8 project authors. All rights reserved.
|
||||
// AUTO-GENERATED BY tools/generate-runtime-tests.py, DO NOT MODIFY
|
||||
// Flags: --allow-natives-syntax --harmony --harmony-proxies
|
||||
var arg0 = {foo: 1.2};
|
||||
var _index = 1;
|
||||
%LoadMutableDouble(arg0, _index);
|
@ -48,7 +48,7 @@ EXPAND_MACROS = [
|
||||
# remove or change runtime functions, but make sure we don't lose our ability
|
||||
# to parse them!
|
||||
EXPECTED_FUNCTION_COUNT = 431
|
||||
EXPECTED_FUZZABLE_COUNT = 332
|
||||
EXPECTED_FUZZABLE_COUNT = 330
|
||||
EXPECTED_CCTEST_COUNT = 7
|
||||
EXPECTED_UNKNOWN_COUNT = 17
|
||||
EXPECTED_BUILTINS_COUNT = 806
|
||||
@ -109,9 +109,11 @@ BLACKLISTED = [
|
||||
"AllocateInNewSpace",
|
||||
"AllocateInTargetSpace",
|
||||
"AllocateHeapNumber",
|
||||
"LoadMutableDouble",
|
||||
"NumberToSmi",
|
||||
"NumberToStringSkipCache",
|
||||
|
||||
"FunctionBindArguments",
|
||||
"NewSloppyArguments",
|
||||
"NewStrictArguments",
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user