Reviewers: titzer,

Message:
I heard you like test coverage, so I put some test coverage about our test
coverage into our test coverage.

Description:
Enable test coverage for test coverage.

[email protected]
TEST=mjsunit/compiler/opt-next-call-turbo

Please review this at https://codereview.chromium.org/822673003/

Base URL: https://chromium.googlesource.com/v8/v8.git@master

Affected files (+2, -4 lines):
  M test/mjsunit/compiler/opt-next-call-turbo.js


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);


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to