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 b493e18 commit ebfc60bCopy full SHA for ebfc60b
packages/flutter_test_runners/lib/src/platform_comms/ios/xcrun.dart
@@ -132,10 +132,11 @@ class Xcrun {
132
"sh",
133
["-c", "xcrun simctl terminate booted $appBundleId"],
134
runInShell: true,
135
- includeParentEnvironment: false,
136
);
137
print("terminate command process was started");
138
+ process.stdin.close();
139
+
140
process.stdout.transform(utf8.decoder).listen((log) {
141
print("terminate command log: $log");
142
});
@@ -144,6 +145,7 @@ class Xcrun {
144
145
print("terminate command error: $error");
146
147
148
+ print("Waiting for exit code...");
149
final exitCode = await process.exitCode;
150
print("Killed app - exit code: $exitCode");
151
}
0 commit comments