Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 384e315 commit 14626c0Copy full SHA for 14626c0
packages/flutter_tools/test/integration.shard/debug_adapter/flutter_adapter_test.dart
@@ -99,6 +99,13 @@ void main() {
99
'',
100
startsWith('Exited'),
101
]);
102
+
103
+ // If we're running with an out-of-process debug adapter, ensure that its
104
+ // own process shuts down after we terminated.
105
+ final DapTestServer server = dap.server;
106
+ if (server is OutOfProcessDapTestServer) {
107
+ await server.exitCode;
108
+ }
109
});
110
111
testWithoutContext('outputs useful message on invalid DAP protocol messages', () async {
0 commit comments