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

Side by Side Diff: test/inspector/heap-profiler/take-heap-snapshot-on-pause.js

Issue 2669393002: [inspector] fixed taskHeapSnapshot on pause (Closed)
Patch Set: updated test expectations Created 3 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 print('Checks that takeHeapSnapshot uses empty accessing_context for access \
6 checks.');
7
8 InspectorTest.addScript(`
9 function testFunction() {
10 var array = [ createObjectWithStrictCheck() ];
11 debugger;
12 }
13 //# sourceURL=test.js`);
14
15 Protocol.Debugger.onScriptParsed(message => {
16 Protocol.HeapProfiler.takeHeapSnapshot({ reportProgress: false })
17 .then(() => Protocol.Debugger.resume());
18 });
19
20 Protocol.Debugger.enable();
21 Protocol.HeapProfiler.enable();
22 Protocol.Runtime.evaluate({ expression: 'testFunction()' })
23 .then(() => InspectorTest.log('Successfully finished'))
24 .then(InspectorTest.completeTest);
OLDNEW
« no previous file with comments | « src/profiler/heap-snapshot-generator.cc ('k') | test/inspector/heap-profiler/take-heap-snapshot-on-pause-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698