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

Side by Side Diff: test/mjsunit/debug-setbreakpoint.js

Issue 242034: Redo "running" field in debug-delay.js and support "suspend" command (Closed)
Patch Set: do not remove body from backtrace Created 11 years, 2 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
« no previous file with comments | « test/mjsunit/debug-scripts-request.js ('k') | test/mjsunit/debug-suspend.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 } 62 }
63 } else { 63 } else {
64 assertFalse(response.success, request + ' -> ' + json_response); 64 assertFalse(response.success, request + ' -> ' + json_response);
65 } 65 }
66 } 66 }
67 67
68 function listener(event, exec_state, event_data, data) { 68 function listener(event, exec_state, event_data, data) {
69 try { 69 try {
70 if (event == Debug.DebugEvent.Break) { 70 if (event == Debug.DebugEvent.Break) {
71 // Get the debug command processor. 71 // Get the debug command processor.
72 var dcp = exec_state.debugCommandProcessor(); 72 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
73 73
74 // Test some illegal setbreakpoint requests. 74 // Test some illegal setbreakpoint requests.
75 var request = '{' + base_request + '}' 75 var request = '{' + base_request + '}'
76 var response = safeEval(dcp.processDebugJSONRequest(request)); 76 var response = safeEval(dcp.processDebugJSONRequest(request));
77 assertFalse(response.success); 77 assertFalse(response.success);
78 78
79 var mirror; 79 var mirror;
80 80
81 testArguments(dcp, '{}', false); 81 testArguments(dcp, '{}', false);
82 testArguments(dcp, '{"type":"xx"}', false); 82 testArguments(dcp, '{"type":"xx"}', false);
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 assertTrue(g_line > 0, "invalid line for g"); 156 assertTrue(g_line > 0, "invalid line for g");
157 assertTrue(f_line < g_line); 157 assertTrue(f_line < g_line);
158 assertEquals(h_line, 0, "invalid line for h"); 158 assertEquals(h_line, 0, "invalid line for h");
159 159
160 // Set a break point and call to invoke the debug event listener. 160 // Set a break point and call to invoke the debug event listener.
161 Debug.setBreakPoint(g, 0, 0); 161 Debug.setBreakPoint(g, 0, 0);
162 g(); 162 g();
163 163
164 // Make sure that the debug event listener vas invoked. 164 // Make sure that the debug event listener vas invoked.
165 assertTrue(listenerComplete, "listener did not run to completion: " + exception) ; 165 assertTrue(listenerComplete, "listener did not run to completion: " + exception) ;
OLDNEW
« no previous file with comments | « test/mjsunit/debug-scripts-request.js ('k') | test/mjsunit/debug-suspend.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698