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

Unified Diff: tests/standalone/debugger/basic_debugger_test.dart

Issue 13474011: Update debugger test (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tests/standalone/debugger/debug_lib.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/debugger/basic_debugger_test.dart
===================================================================
--- tests/standalone/debugger/basic_debugger_test.dart (revision 20832)
+++ tests/standalone/debugger/basic_debugger_test.dart (working copy)
@@ -30,13 +30,11 @@
// Expected debugger events and commands.
var testScript = [
- Breakpoint(), // Expect a breakpoint event.
MatchFrame(0, "main"), // Top frame in trace is function "main".
Step(),
- Breakpoint(function: "main"),
+ MatchFrame(0, "main"), // Should still be in "main".
SetBreakpoint(15), // Set breakpoint a line 15, in function bar.
Resume(),
- Breakpoint(function: "bar"),
MatchFrames(["bar", "foo", "main"]),
MatchFrame(1, "foo"),
Resume(),
« no previous file with comments | « no previous file | tests/standalone/debugger/debug_lib.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698