Unverified Commit f93a65a7 authored by Sigurd Meldgaard's avatar Sigurd Meldgaard Committed by GitHub

Extra debug information in run_release_test (#19405)

parent f6b234a0
......@@ -69,8 +69,10 @@ void main() {
stdout.removeAt(0);
if (stdout.first == 'Installing build/app/outputs/apk/app.apk...')
stdout.removeAt(0);
if (stdout.join('\n') != '\nTo quit, press "q".\n\nApplication finished.')
throw 'flutter run --release had unexpected output after third line';
if (stdout.join('\n') != '\nTo quit, press "q".\n\nApplication finished.') {
throw 'flutter run --release had unexpected output after third line:\n'
'${stdout.join('\n')}';
}
});
return new TaskResult.success(null);
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment