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

Unified Diff: test/mjsunit/compiler/opt-next-call-turbo.js

Issue 822673003: Enable test coverage for test coverage. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/compiler/opt-next-call-turbo.js
diff --git a/test/mjsunit/compiler/opt-next-call-turbo.js b/test/mjsunit/compiler/opt-next-call-turbo.js
index f8c6300b3d2dd0abeebc88da5c53dc3848764c68..d4beff9f6e6f0830713a0ee374671296b8f1b2d2 100644
--- a/test/mjsunit/compiler/opt-next-call-turbo.js
+++ b/test/mjsunit/compiler/opt-next-call-turbo.js
@@ -10,8 +10,7 @@ function foo() {
%OptimizeFunctionOnNextCall(foo);
assertEquals("fooed", foo());
-// TODO(mstarzinger): Still not optimized, make sure it is.
-// assertOptimized(foo);
+assertOptimized(foo);
function bar() {
with ({ value:"bared" }) { return value; }
@@ -20,5 +19,4 @@ function bar() {
assertEquals("bared", bar());
%OptimizeFunctionOnNextCall(bar);
assertEquals("bared", bar());
-// TODO(mstarzinger): Still not optimized, make sure it is.
-// assertOptimized(bar);
+assertOptimized(bar);
« 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