summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/cpu-profiler/coverage.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/inspector/cpu-profiler/coverage.js')
-rw-r--r--deps/v8/test/inspector/cpu-profiler/coverage.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/test/inspector/cpu-profiler/coverage.js b/deps/v8/test/inspector/cpu-profiler/coverage.js
index a059467b2e..ce4995fd1c 100644
--- a/deps/v8/test/inspector/cpu-profiler/coverage.js
+++ b/deps/v8/test/inspector/cpu-profiler/coverage.js
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// Flags: --allow-natives-syntax --no-always-opt --crankshaft
+// Flags: --allow-natives-syntax --no-always-opt --opt
var source =
`
@@ -50,7 +50,7 @@ var f = (function outer() {
f()()();
`;
-InspectorTest.log("Test collecting code coverage data with Profiler.collectCoverage.");
+let {session, contextGroup, Protocol} = InspectorTest.start("Test collecting code coverage data with Profiler.collectCoverage.");
function ClearAndGC() {
return Protocol.Runtime.evaluate({ expression: "fib = g = f = h = is_optimized = null;" })