Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | |
|
dgozman
2017/01/18 16:47:55
2017
kozy
2017/01/18 16:55:33
Done.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 // Flags: --max_old_space_size=4 | |
| 5 | |
| 6 print('Check pause on OOM'); | |
| 7 | |
| 8 const memory_limit = 4 * 1024 * 1024; | |
| 9 | |
| 10 InspectorTest.addScript(` | |
| 11 function generateGarbage() { | |
| 12 var arr = []; | |
| 13 for (var i = 0; i < ${memory_limit / 32}; ++i) { | |
| 14 arr.push(i); | |
| 15 } | |
| 16 } | |
| 17 //# sourceURL=test.js`, 10, 26); | |
| 18 | |
| 19 Protocol.Debugger.onPaused((message) => { | |
| 20 InspectorTest.logMessage(message); | |
| 21 InspectorTest.completeTest(); | |
| 22 }); | |
| 23 Protocol.Debugger.enable(); | |
| 24 Protocol.Runtime.evaluate({ expression: 'generateGarbage()' }); | |
| OLD | NEW |