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

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

Issue 10970058: Split test/mjsunit/fuzz-natives into smaller chunks (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 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/fuzz-natives-part2.js ('k') | test/mjsunit/fuzz-natives-part4.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/fuzz-natives-part3.js
diff --git a/test/mjsunit/fuzz-natives.js b/test/mjsunit/fuzz-natives-part3.js
similarity index 98%
copy from test/mjsunit/fuzz-natives.js
copy to test/mjsunit/fuzz-natives-part3.js
index 225a44d8a514a665d2d89d3f7d9ca6b01fb022c2..ecfdf9737dc76d35c98836c8c0b96eba8e59f3e5 100644
--- a/test/mjsunit/fuzz-natives.js
+++ b/test/mjsunit/fuzz-natives-part3.js
@@ -205,7 +205,9 @@ var currentlyUncallable = {
function testNatives() {
var allNatives = %ListNatives();
- for (var i = 0; i < allNatives.length; i++) {
+ var start = (allNatives.length >> 2)*2;
+ var stop = (allNatives.length >> 2)*3;
+ for (var i = start; i < stop; i++) {
var nativeInfo = allNatives[i];
var name = nativeInfo[0];
if (name in knownProblems || name in currentlyUncallable)
« no previous file with comments | « test/mjsunit/fuzz-natives-part2.js ('k') | test/mjsunit/fuzz-natives-part4.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698