| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 // Flags: --expose-debug-as debug | 28 // Flags: --expose-debug-as debug |
| 29 | 29 |
| 30 // This test tests that full code compiled without debug break slots | 30 // This test tests that full code compiled without debug break slots |
| 31 // is recompiled with debug break slots when debugging is started. | 31 // is recompiled with debug break slots when debugging is started. |
| 32 | 32 |
| 33 // Get the Debug object exposed from the debug context global object. | 33 // Get the Debug object exposed from the debug context global object. |
| 34 Debug = debug.Debug | 34 Debug = debug.Debug; |
| 35 | 35 |
| 36 var bp; | 36 var bp; |
| 37 var done = false; | 37 var done = false; |
| 38 var step_count = 0; | 38 var step_count = 0; |
| 39 | 39 |
| 40 // Debug event listener which steps until the global variable done is true. | 40 // Debug event listener which steps until the global variable done is true. |
| 41 function listener(event, exec_state, event_data, data) { | 41 function listener(event, exec_state, event_data, data) { |
| 42 if (event == Debug.DebugEvent.Break) { | 42 if (event == Debug.DebugEvent.Break) { |
| 43 if (!done) exec_state.prepareStep(Debug.StepAction.StepNext); | 43 if (!done) exec_state.prepareStep(Debug.StepAction.StepNext); |
| 44 step_count++; | 44 step_count++; |
| 45 } | 45 } |
| 46 }; | 46 } |
| 47 | 47 |
| 48 // Set the global variables state to prpare the stepping test. | 48 // Set the global variables state to prpare the stepping test. |
| 49 function prepare_step_test() { | 49 function prepare_step_test() { |
| 50 done = false; | 50 done = false; |
| 51 step_count = 0; | 51 step_count = 0; |
| 52 } | 52 } |
| 53 | 53 |
| 54 // Test function to step through. | 54 // Test function to step through. |
| 55 function f() { | 55 function f() { |
| 56 var i = 1; | 56 var i = 1; |
| 57 var j = 2; | 57 var j = 2; |
| 58 done = true; | 58 done = true; |
| 59 }; | 59 } |
| 60 | 60 |
| 61 prepare_step_test(); | 61 prepare_step_test(); |
| 62 f(); | 62 f(); |
| 63 | 63 |
| 64 // Add the debug event listener. | 64 // Add the debug event listener. |
| 65 Debug.setListener(listener); | 65 Debug.setListener(listener); |
| 66 | 66 |
| 67 bp = Debug.setBreakPoint(f, 1); | 67 bp = Debug.setBreakPoint(f, 1); |
| 68 | 68 |
| 69 prepare_step_test(); | 69 prepare_step_test(); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 80 assertEquals(4, step_count); | 80 assertEquals(4, step_count); |
| 81 | 81 |
| 82 // Clear the breakpoint and check that no stepping happens. | 82 // Clear the breakpoint and check that no stepping happens. |
| 83 Debug.clearBreakPoint(bp); | 83 Debug.clearBreakPoint(bp); |
| 84 prepare_step_test(); | 84 prepare_step_test(); |
| 85 f(); | 85 f(); |
| 86 assertEquals(0, step_count); | 86 assertEquals(0, step_count); |
| 87 | 87 |
| 88 // Get rid of the debug event listener. | 88 // Get rid of the debug event listener. |
| 89 Debug.setListener(null); | 89 Debug.setListener(null); |
| OLD | NEW |