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

Side by Side Diff: test/mjsunit/fuzz-natives.js

Issue 11035053: Rollback trunk to bleeding_edge revision 12525 (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/mjsunit/elements-transition-hoisting.js ('k') | test/mjsunit/fuzz-natives-part1.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 "_GetCachedArrayIndex": true 198 "_GetCachedArrayIndex": true
199 }; 199 };
200 200
201 var currentlyUncallable = { 201 var currentlyUncallable = {
202 // We need to find a way to test this without breaking the system. 202 // We need to find a way to test this without breaking the system.
203 "SystemBreak": true 203 "SystemBreak": true
204 }; 204 };
205 205
206 function testNatives() { 206 function testNatives() {
207 var allNatives = %ListNatives(); 207 var allNatives = %ListNatives();
208 var start = 0; 208 for (var i = 0; i < allNatives.length; i++) {
209 var stop = (allNatives.length >> 2);
210 for (var i = start; i < stop; i++) {
211 var nativeInfo = allNatives[i]; 209 var nativeInfo = allNatives[i];
212 var name = nativeInfo[0]; 210 var name = nativeInfo[0];
213 if (name in knownProblems || name in currentlyUncallable) 211 if (name in knownProblems || name in currentlyUncallable)
214 continue; 212 continue;
215 print(name); 213 print(name);
216 var argc = nativeInfo[1]; 214 var argc = nativeInfo[1];
217 testArgumentCount(name, argc); 215 testArgumentCount(name, argc);
218 testArgumentTypes(name, argc); 216 testArgumentTypes(name, argc);
219 } 217 }
220 } 218 }
221 219
222 testNatives(); 220 testNatives();
OLDNEW
« 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