Skip to content

Commit 608786e

Browse files
committed
Print verbose logs in avd_test.sh and cuttlefish.sh
1 parent 9684a35 commit 608786e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

scripts/avd_test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,15 +134,15 @@ test_main() {
134134

135135
if [ -z "$AVD_TEST_SKIP_DEBUG" ]; then
136136
# Patch and test debug build
137-
./build.py avd_patch "$ramdisk" magisk_patched.img
137+
./build.py -v avd_patch "$ramdisk" magisk_patched.img
138138
kill -INT $emu_pid
139139
wait $emu_pid
140140
test_emu debug $api
141141
fi
142142

143143
if [ -z "$AVD_TEST_SKIP_RELEASE" ]; then
144144
# Patch and test release build
145-
./build.py -r avd_patch "$ramdisk" magisk_patched.img
145+
./build.py -vr avd_patch "$ramdisk" magisk_patched.img
146146
kill -INT $emu_pid
147147
wait $emu_pid
148148
test_emu release $api

scripts/cuttlefish.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ test_main() {
8585
adb wait-for-device
8686

8787
# Patch and test debug build
88-
./build.py avd_patch "$CF_HOME/init_boot.img" magisk_patched.img
88+
./build.py -v avd_patch "$CF_HOME/init_boot.img" magisk_patched.img
8989
test_cf debug
9090

9191
# Patch and test release build
92-
./build.py -r avd_patch "$CF_HOME/init_boot.img" magisk_patched.img
92+
./build.py -vr avd_patch "$CF_HOME/init_boot.img" magisk_patched.img
9393
test_cf release
9494

9595
# Cleanup

0 commit comments

Comments
 (0)