mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
32 lines
1.1 KiB
Bash
Executable File
32 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2014 The Flutter Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Store the time to prevent capturing logs from previous runs.
|
|
script_start_time=$(adb shell 'date +"%m-%d %H:%M:%S.0"')
|
|
|
|
adb uninstall "io.flutter.integration.deferred_components_test"
|
|
|
|
rm -f build/app/outputs/bundle/release/app-release.apks
|
|
rm -f build/app/outputs/bundle/release/run_logcat.log
|
|
|
|
flutter build appbundle
|
|
|
|
java -jar $1 build-apks --bundle=build/app/outputs/bundle/release/app-release.aab --output=build/app/outputs/bundle/release/app-release.apks --local-testing
|
|
java -jar $1 install-apks --apks=build/app/outputs/bundle/release/app-release.apks
|
|
|
|
adb shell "
|
|
am start -n io.flutter.integration.deferred_components_test/.MainActivity
|
|
sleep 12
|
|
exit
|
|
"
|
|
adb logcat -d -t "$script_start_time" -s "flutter" > build/app/outputs/bundle/release/run_logcat.log
|
|
echo ""
|
|
if cat build/app/outputs/bundle/release/run_logcat.log | grep -q "Running deferred code"; then
|
|
echo "All tests passed."
|
|
exit 0
|
|
fi
|
|
echo "Failure: Deferred component did not load."
|
|
exit 1
|