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

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

Issue 9039: fuzz natives times out on some machines due to DebugReferencedBy (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 // to unexpected integer values. 100 // to unexpected integer values.
101 "DebugEvaluate": true, 101 "DebugEvaluate": true,
102 102
103 // These functions do nontrivial error checking in recursive calls, 103 // These functions do nontrivial error checking in recursive calls,
104 // which means that we have to propagate errors back. 104 // which means that we have to propagate errors back.
105 "SetFunctionBreakPoint": true, 105 "SetFunctionBreakPoint": true,
106 "SetScriptBreakPoint": true, 106 "SetScriptBreakPoint": true,
107 "ChangeBreakOnException": true, 107 "ChangeBreakOnException": true,
108 "PrepareStep": true, 108 "PrepareStep": true,
109 109
110 // Too slow.
111 "DebugReferencedBy": true,
112
110 // Calling disable/enable access checks may interfere with the 113 // Calling disable/enable access checks may interfere with the
111 // the rest of the tests. 114 // the rest of the tests.
112 "DisableAccessChecks": true, 115 "DisableAccessChecks": true,
113 "EnableAccessChecks": true, 116 "EnableAccessChecks": true,
114 117
115 // These functions should not be callable as runtime functions. 118 // These functions should not be callable as runtime functions.
116 "NewContext": true, 119 "NewContext": true,
117 "NewArgumentsFast": true, 120 "NewArgumentsFast": true,
118 "PushContext": true, 121 "PushContext": true,
119 "LazyCompile": true, 122 "LazyCompile": true,
(...skipping 15 matching lines...) Expand all
135 if (name in knownProblems || name in currentlyUncallable) 138 if (name in knownProblems || name in currentlyUncallable)
136 continue; 139 continue;
137 print(name); 140 print(name);
138 var argc = nativeInfo[1]; 141 var argc = nativeInfo[1];
139 testArgumentCount(name); 142 testArgumentCount(name);
140 testArgumentTypes(name, argc); 143 testArgumentTypes(name, argc);
141 } 144 }
142 } 145 }
143 146
144 testNatives(); 147 testNatives();
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698