Blacklist %InternalSetProperty from runtime test fuzzing.

R=verwaest@chromium.org
BUG=405499
LOG=N

Review URL: https://codereview.chromium.org/491843002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23230 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
yangguo@chromium.org 2014-08-20 12:51:48 +00:00
parent b15a082d56
commit 8cb41618ce
2 changed files with 5 additions and 8 deletions

View File

@ -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 _obj = new Object();
var _prototype = new Object();
%InternalSetPrototype(_obj, _prototype);

View File

@ -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 = 429
EXPECTED_FUZZABLE_COUNT = 331
EXPECTED_FUZZABLE_COUNT = 330
EXPECTED_CCTEST_COUNT = 7
EXPECTED_UNKNOWN_COUNT = 17
EXPECTED_BUILTINS_COUNT = 809
@ -170,7 +170,10 @@ BLACKLISTED = [
# Maths
"MathPowSlow",
"MathPowRT"
"MathPowRT",
# Internal
"InternalSetPrototype",
]