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

Unified Diff: test/debugger/debug/regress/regress-crbug-568477-4.js

Issue 2530533002: [debug-wrapper] adapt stepping tests to inspector behavior. (Closed)
Patch Set: Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/debugger/debug/regress/regress-crbug-568477-3.js ('k') | test/debugger/debugger.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/debugger/debug/regress/regress-crbug-568477-4.js
diff --git a/test/debugger/debug/regress/regress-crbug-568477-4.js b/test/debugger/debug/regress/regress-crbug-568477-4.js
index 706e6c8ebb4e3b017b3811823c6c77a0ffa49927..95bc939ef2428b174276bf05bea76e8d7126ccea 100644
--- a/test/debugger/debug/regress/regress-crbug-568477-4.js
+++ b/test/debugger/debug/regress/regress-crbug-568477-4.js
@@ -4,15 +4,15 @@
var Debug = debug.Debug;
-var expected =
- ["debugger;", "var x = y;", "var b = 2;", "Debug.setListener(null);"];
+var expected = ["debugger;", "var x = y;"];
var log = [];
function listener(event, exec_state, event_data, data) {
if (event != Debug.DebugEvent.Break) return;
try {
- log.push(exec_state.frame(0).sourceLineText().trimLeft());
- exec_state.prepareStep(Debug.StepAction.StepNext);
+ var line = exec_state.frame(0).sourceLineText().trimLeft();
+ log.push(line);
+ if (line == "debugger;") exec_state.prepareStep(Debug.StepAction.StepNext);
} catch (e) {
%AbortJS(e + "\n" + e.stack);
}
« no previous file with comments | « test/debugger/debug/regress/regress-crbug-568477-3.js ('k') | test/debugger/debugger.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698