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

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

Issue 2653753007: [tests] Cleanup tests that use assertOptimized()/assertUnoptimized(). (Closed)
Patch Set: Addressing comments 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
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 // Flags: --max_old_space_size=4 4
5 // Flags: --max-old-space-size=4
5 6
6 print('Check pause on OOM'); 7 print('Check pause on OOM');
7 8
8 InspectorTest.addScript(` 9 InspectorTest.addScript(`
9 var arr = []; 10 var arr = [];
10 var stop = false; 11 var stop = false;
11 function generateGarbage() { 12 function generateGarbage() {
12 while(!stop) { 13 while(!stop) {
13 arr.push(42); 14 arr.push(42);
14 } 15 }
15 } 16 }
16 //# sourceURL=test.js`, 10, 26); 17 //# sourceURL=test.js`, 10, 26);
17 18
18 Protocol.Debugger.onPaused((message) => { 19 Protocol.Debugger.onPaused((message) => {
19 InspectorTest.log(`reason: ${message.params.reason}`); 20 InspectorTest.log(`reason: ${message.params.reason}`);
20 Protocol.Debugger.evaluateOnCallFrame({ 21 Protocol.Debugger.evaluateOnCallFrame({
21 callFrameId: message.params.callFrames[0].callFrameId, 22 callFrameId: message.params.callFrames[0].callFrameId,
22 expression: 'arr = []; stop = true;' 23 expression: 'arr = []; stop = true;'
23 }).then(() => Protocol.Debugger.resume()); 24 }).then(() => Protocol.Debugger.resume());
24 }); 25 });
25 Protocol.Debugger.enable(); 26 Protocol.Debugger.enable();
26 Protocol.Runtime.evaluate({ expression: 'generateGarbage()' }) 27 Protocol.Runtime.evaluate({ expression: 'generateGarbage()' })
27 .then(InspectorTest.completeTest); 28 .then(InspectorTest.completeTest);
OLDNEW
« no previous file with comments | « test/debugger/debug/regress/regress-prepare-break-while-recompile.js ('k') | test/mjsunit/allocation-site-info.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698