Chromium Code Reviews| 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), |
|
Cutch
2017/02/08 16:48:20
why is includeOwner needed here?
jensj
2017/02/13 14:04:16
From source the name of the async function is some
Cutch
2017/03/07 01:58:37
The function names reported via kernel and the VM
jensj
2017/03/07 08:43:40
I actually think they are today. It was done a wee
|
| stoppedAtLine(LINE_A), |
| stepInto, |
| stoppedInFunction('print'), |
| stepOut, |
| - stoppedInFunction('testMain', contains:true), |
| + stoppedInFunction('testMain', contains: true, includeOwner: true), |
|
Cutch
2017/03/07 01:58:37
dito here
|
| 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), |
| ]; |