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

Unified Diff: runtime/observatory/tests/service/set_library_debuggable_test.dart

Issue 2680303002: Kernel debugging; service tests (Closed)
Patch Set: Changes based on feedback. Also fixed regress_28443_test Created 3 years, 10 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
Index: runtime/observatory/tests/service/set_library_debuggable_test.dart
diff --git a/runtime/observatory/tests/service/set_library_debuggable_test.dart b/runtime/observatory/tests/service/set_library_debuggable_test.dart
index d76569c5d1849d64271a25e672ab40e3af1e9ed1..970478bae779311b23eb4d4834075ba35944f0f6 100644
--- a/runtime/observatory/tests/service/set_library_debuggable_test.dart
+++ b/runtime/observatory/tests/service/set_library_debuggable_test.dart
@@ -30,12 +30,12 @@ var tests = [
await dartCore.load();
expect(dartCore.debuggable, equals(true));
},
- stoppedInFunction('testMain', contains:true),
+ stoppedInFunction('testMain', contains: true, includeOwner: true),
stoppedAtLine(LINE_A),
stepInto,
stoppedInFunction('print'),
stepOut,
- stoppedInFunction('testMain', contains:true),
+ stoppedInFunction('testMain', contains: true, includeOwner: true),
stoppedAtLine(LINE_B),
(Isolate isolate) async {
// Mark 'dart:core' as not debuggable.
@@ -55,10 +55,10 @@ var tests = [
await dartCore.reload();
expect(dartCore.debuggable, equals(false));
},
- stoppedInFunction('testMain', contains:true),
+ stoppedInFunction('testMain', contains: true, includeOwner: true),
stoppedAtLine(LINE_B),
stepInto,
- stoppedInFunction('testMain', contains:true),
+ stoppedInFunction('testMain', contains: true, includeOwner: true),
stoppedAtLine(LINE_C),
];

Powered by Google App Engine
This is Rietveld 408576698