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

Unified Diff: test/mjsunit/code-coverage-ad-hoc.js

Issue 2766573003: [debug] introduce precise binary code coverage. (Closed)
Patch Set: fix test Created 3 years, 9 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 | « test/inspector/cpu-profiler/coverage-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/code-coverage-ad-hoc.js
diff --git a/test/mjsunit/code-coverage-ad-hoc.js b/test/mjsunit/code-coverage-ad-hoc.js
index 9289c2152a07984d2eaa343c94cb6e239a171711..93bea15fe5762f022ea538c895046c2aa0d164ce 100644
--- a/test/mjsunit/code-coverage-ad-hoc.js
+++ b/test/mjsunit/code-coverage-ad-hoc.js
@@ -30,7 +30,7 @@ f();
f();
`,
[{"start":0,"end":25,"count":1},
- {"start":0,"end":15,"count":2}]
+ {"start":0,"end":15,"count":1}]
);
TestCoverage(
@@ -41,7 +41,7 @@ f();
f();
`,
[{"start":0,"end":26,"count":1},
- {"start":8,"end":15,"count":2}]
+ {"start":8,"end":15,"count":1}]
);
TestCoverage(
@@ -56,8 +56,8 @@ f();
f();
`,
[{"start":0,"end":58,"count":1},
- {"start":0,"end":48,"count":2},
- {"start":17,"end":32,"count":4}]
+ {"start":0,"end":48,"count":1},
+ {"start":17,"end":32,"count":1}]
);
TestCoverage(
@@ -70,5 +70,5 @@ function fib(x) {
fib(5);
`,
[{"start":0,"end":80,"count":1},
- {"start":0,"end":72,"count":15}]
+ {"start":0,"end":72,"count":1}]
);
« no previous file with comments | « test/inspector/cpu-profiler/coverage-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698