Chromium Code Reviews| Index: test/cctest/compiler/test-run-jscalls.cc |
| diff --git a/test/cctest/compiler/test-run-jscalls.cc b/test/cctest/compiler/test-run-jscalls.cc |
| index 621c1c339fff995aaa0e9cfe69bba71a801dcb06..143b91d35b6391b787780eccf022520b32fb45ce 100644 |
| --- a/test/cctest/compiler/test-run-jscalls.cc |
| +++ b/test/cctest/compiler/test-run-jscalls.cc |
| @@ -141,16 +141,6 @@ TEST(RuntimeCallCPP2) { |
| } |
| -TEST(RuntimeCallJS) { |
|
Benedikt Meurer
2015/10/01 13:05:48
Note: There are no "meaningful high level" JS intr
|
| - FLAG_allow_natives_syntax = true; |
| - FunctionTester T("(function(a) { return %to_number_fun(a); })"); |
| - |
| - T.CheckCall(T.Val(23), T.Val(23), T.undefined()); |
| - T.CheckCall(T.Val(4.2), T.Val(4.2), T.undefined()); |
| - T.CheckCall(T.Val(1), T.true_value(), T.undefined()); |
| -} |
| - |
| - |
| TEST(RuntimeCallInline) { |
| FLAG_allow_natives_syntax = true; |
| FunctionTester T("(function(a) { return %_IsSpecObject(a); })"); |