Reviewers: Michael Starzinger, Yang,

Description:
Keep native fuzzing blacklists in sync

[email protected], [email protected]
BUG=

Please review this at https://codereview.chromium.org/16436005/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M test/mjsunit/fuzz-natives-part1.js
  M test/mjsunit/fuzz-natives-part2.js
  M test/mjsunit/fuzz-natives-part3.js
  M test/mjsunit/fuzz-natives-part4.js


Index: test/mjsunit/fuzz-natives-part1.js
diff --git a/test/mjsunit/fuzz-natives-part1.js b/test/mjsunit/fuzz-natives-part1.js index 8b290d582e620b40f499e1a3b0aef5bf13796534..d5e1aeea5f173485992ed4ab7ec99407b273297c 100644
--- a/test/mjsunit/fuzz-natives-part1.js
+++ b/test/mjsunit/fuzz-natives-part1.js
@@ -201,6 +201,10 @@ var knownProblems = {
   "_GetCachedArrayIndex": true,
   "_OneByteSeqStringSetChar": true,
   "_TwoByteSeqStringSetChar": true,
+
+  // Only applicable to generators.
+  "_GeneratorNext": true,
+  "_GeneratorThrow": true,
 };

 var currentlyUncallable = {
Index: test/mjsunit/fuzz-natives-part2.js
diff --git a/test/mjsunit/fuzz-natives-part2.js b/test/mjsunit/fuzz-natives-part2.js index d5358afe680abe3692f48a174324b4aab138c2fa..699a3417839a32db3c17fd6263fc7a1462e0746f 100644
--- a/test/mjsunit/fuzz-natives-part2.js
+++ b/test/mjsunit/fuzz-natives-part2.js
@@ -202,6 +202,10 @@ var knownProblems = {
   "_GetCachedArrayIndex": true,
   "_OneByteSeqStringSetChar": true,
   "_TwoByteSeqStringSetChar": true,
+
+  // Only applicable to generators.
+  "_GeneratorNext": true,
+  "_GeneratorThrow": true,
 };

 var currentlyUncallable = {
Index: test/mjsunit/fuzz-natives-part3.js
diff --git a/test/mjsunit/fuzz-natives-part3.js b/test/mjsunit/fuzz-natives-part3.js index 05d32e9ae20548c27c6e0318b2327f3e06dce24d..973963597f75666b70fb08db442aec20a48223d0 100644
--- a/test/mjsunit/fuzz-natives-part3.js
+++ b/test/mjsunit/fuzz-natives-part3.js
@@ -200,6 +200,10 @@ var knownProblems = {
   "_GetCachedArrayIndex": true,
   "_OneByteSeqStringSetChar": true,
   "_TwoByteSeqStringSetChar": true,
+
+  // Only applicable to generators.
+  "_GeneratorNext": true,
+  "_GeneratorThrow": true,
 };

 var currentlyUncallable = {
Index: test/mjsunit/fuzz-natives-part4.js
diff --git a/test/mjsunit/fuzz-natives-part4.js b/test/mjsunit/fuzz-natives-part4.js index 54184dd0ad12bacc4ed4cee5e096409cb474f70a..595af7d629a5d2efc3b75444fb96faa8d00f5351 100644
--- a/test/mjsunit/fuzz-natives-part4.js
+++ b/test/mjsunit/fuzz-natives-part4.js
@@ -203,7 +203,7 @@ var knownProblems = {

   // Only applicable to generators.
   "_GeneratorNext": true,
-  "_GeneratorThrow": true
+  "_GeneratorThrow": true,
 };

 var currentlyUncallable = {


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to