Chromium Code Reviews| Index: test/mjsunit/code-coverage-precise.js |
| diff --git a/test/mjsunit/code-coverage-precise.js b/test/mjsunit/code-coverage-precise.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c8d354bb7d27192379345b0eed11cc0b8e68252f |
| --- /dev/null |
| +++ b/test/mjsunit/code-coverage-precise.js |
| @@ -0,0 +1,71 @@ |
| +// Copyright 2017 the V8 project authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +// Flags: --allow-natives-syntax |
| + |
| +// Test precise code coverage. |
| + |
| +function GetCoverage(source) { |
| + var scripts = %DebugGetLoadedScripts(); |
| + for (var script of scripts) { |
| + if (script.source == source) { |
| + var coverage = %DebugCollectCoverage(); |
| + for (var data of coverage) { |
| + if (data.script_id == script.id) return data.entries; |
| + } |
| + } |
| + } |
| + return undefined; |
| +} |
| + |
| +function ApplyCoverageToSource(source, coverage) { |
| + var result = ""; |
| + var cursor = 0; |
| + for (var entry of coverage) { |
| + var chunk = source.substring(cursor, entry.end_position); |
| + cursor = entry.end_position; |
| + result += `[${chunk}[${entry.count}]]`; |
| + } |
| + return result; |
| +} |
| + |
| +function TestCoverage(name, source, expectation) { |
| + source = source.trim(); |
| + expectation = expectation.trim(); |
| + eval(source); |
| + var coverage = GetCoverage(source); |
| + var result = ApplyCoverageToSource(source, coverage); |
| + print(result); |
| + assertEquals(expectation, result, name + " failed"); |
| +} |
| + |
| +%DebugTogglePreciseCoverage(true); |
| + |
| +TestCoverage( |
| +"call an IIFE", |
| +` |
| +(function f() {})(); |
| +`, |
| +` |
| +[(function f() {})();[1]] |
| +` |
| +); |
| + |
| +TestCoverage( |
| +"call locally allocated function", |
| +` |
| +for (var i = 0; i < 10; i++) { |
| + let f = () => 1; |
| + i += f(); |
| +} |
| +`, |
| +` |
| +[for (var i = 0; i < 10; i++) { |
| + let f = [1]][() => 1[5]][; |
| + i += f(); |
| +}[1]] |
| +` |
| +); |
| + |
| +%DebugTogglePreciseCoverage(false); |
|
jgruber
2017/02/09 16:08:48
Could you add the same tests as above after disabl
Yang
2017/02/09 17:42:15
Done.
|