Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1153)

Unified Diff: test/mjsunit/fuzz-natives.js

Issue 11028027: Revert trunk to bleeding_edge at r12484 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/elements-transition-hoisting.js ('k') | test/mjsunit/fuzz-natives-part1.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/fuzz-natives.js
diff --git a/test/mjsunit/fuzz-natives-part1.js b/test/mjsunit/fuzz-natives.js
similarity index 98%
rename from test/mjsunit/fuzz-natives-part1.js
rename to test/mjsunit/fuzz-natives.js
index 6941d806cc4fc027b0cf52bbccb7ef9a2b216cd9..225a44d8a514a665d2d89d3f7d9ca6b01fb022c2 100644
--- a/test/mjsunit/fuzz-natives-part1.js
+++ b/test/mjsunit/fuzz-natives.js
@@ -205,9 +205,7 @@ var currentlyUncallable = {
function testNatives() {
var allNatives = %ListNatives();
- var start = 0;
- var stop = (allNatives.length >> 2);
- for (var i = start; i < stop; i++) {
+ for (var i = 0; i < allNatives.length; i++) {
var nativeInfo = allNatives[i];
var name = nativeInfo[0];
if (name in knownProblems || name in currentlyUncallable)
« no previous file with comments | « test/mjsunit/elements-transition-hoisting.js ('k') | test/mjsunit/fuzz-natives-part1.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698