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

Unified Diff: test/cctest/compiler/test-run-jscalls.cc

Issue 1384443002: [es6] Fix missing bits for full @@toPrimitive support. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove useless cctest. Created 5 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
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); })");

Powered by Google App Engine
This is Rietveld 408576698