| OLD | NEW |
| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 "StringBuilderConcat": true, | 122 "StringBuilderConcat": true, |
| 123 | 123 |
| 124 // These functions use pseudo-stack-pointers and are not robust | 124 // These functions use pseudo-stack-pointers and are not robust |
| 125 // to unexpected integer values. | 125 // to unexpected integer values. |
| 126 "DebugEvaluate": true, | 126 "DebugEvaluate": true, |
| 127 | 127 |
| 128 // These functions do nontrivial error checking in recursive calls, | 128 // These functions do nontrivial error checking in recursive calls, |
| 129 // which means that we have to propagate errors back. | 129 // which means that we have to propagate errors back. |
| 130 "SetFunctionBreakPoint": true, | 130 "SetFunctionBreakPoint": true, |
| 131 "SetScriptBreakPoint": true, | 131 "SetScriptBreakPoint": true, |
| 132 "ChangeBreakOnException": true, | |
| 133 "PrepareStep": true, | 132 "PrepareStep": true, |
| 134 | 133 |
| 135 // Too slow. | 134 // Too slow. |
| 136 "DebugReferencedBy": true, | 135 "DebugReferencedBy": true, |
| 137 | 136 |
| 138 // Calling disable/enable access checks may interfere with the | 137 // Calling disable/enable access checks may interfere with the |
| 139 // the rest of the tests. | 138 // the rest of the tests. |
| 140 "DisableAccessChecks": true, | 139 "DisableAccessChecks": true, |
| 141 "EnableAccessChecks": true, | 140 "EnableAccessChecks": true, |
| 142 | 141 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 if (name in knownProblems || name in currentlyUncallable) | 195 if (name in knownProblems || name in currentlyUncallable) |
| 197 continue; | 196 continue; |
| 198 print(name); | 197 print(name); |
| 199 var argc = nativeInfo[1]; | 198 var argc = nativeInfo[1]; |
| 200 testArgumentCount(name, argc); | 199 testArgumentCount(name, argc); |
| 201 testArgumentTypes(name, argc); | 200 testArgumentTypes(name, argc); |
| 202 } | 201 } |
| 203 } | 202 } |
| 204 | 203 |
| 205 testNatives(); | 204 testNatives(); |
| OLD | NEW |