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

Side by Side Diff: test/inspector/debugger/pause-on-oom.js

Issue 2713023004: [inspector] added reconnect method for tests (Closed)
Patch Set: rebased 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 unified diff | Download patch
OLDNEW
1 // Copyright 2017 the V8 project authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --max-old-space-size=4 5 // Flags: --max-old-space-size=4
6 6
7 print('Check pause on OOM'); 7 InspectorTest.log('Check pause on OOM');
8 8
9 InspectorTest.addScript(` 9 InspectorTest.addScript(`
10 var arr = []; 10 var arr = [];
11 var stop = false; 11 var stop = false;
12 function generateGarbage() { 12 function generateGarbage() {
13 while(!stop) { 13 while(!stop) {
14 arr.push(42); 14 arr.push(42);
15 } 15 }
16 } 16 }
17 //# sourceURL=test.js`, 10, 26); 17 //# sourceURL=test.js`, 10, 26);
18 18
19 Protocol.Debugger.onPaused((message) => { 19 Protocol.Debugger.onPaused((message) => {
20 InspectorTest.log(`reason: ${message.params.reason}`); 20 InspectorTest.log(`reason: ${message.params.reason}`);
21 Protocol.Debugger.evaluateOnCallFrame({ 21 Protocol.Debugger.evaluateOnCallFrame({
22 callFrameId: message.params.callFrames[0].callFrameId, 22 callFrameId: message.params.callFrames[0].callFrameId,
23 expression: 'arr = []; stop = true;' 23 expression: 'arr = []; stop = true;'
24 }).then(() => Protocol.Debugger.resume()); 24 }).then(() => Protocol.Debugger.resume());
25 }); 25 });
26 Protocol.Debugger.enable(); 26 Protocol.Debugger.enable();
27 Protocol.Runtime.evaluate({ expression: 'generateGarbage()' }) 27 Protocol.Runtime.evaluate({ expression: 'generateGarbage()' })
28 .then(InspectorTest.completeTest); 28 .then(InspectorTest.completeTest);
OLDNEW
« no previous file with comments | « test/inspector/debugger/object-preview-internal-properties.js ('k') | test/inspector/debugger/restore-breakpoint.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698