From 608786e8f330e533792c4a985b7cfd466ee373b1 Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Sun, 11 May 2025 02:18:36 -0700 Subject: [PATCH] Print verbose logs in avd_test.sh and cuttlefish.sh --- scripts/avd_test.sh | 4 ++-- scripts/cuttlefish.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/avd_test.sh b/scripts/avd_test.sh index 37a569333..197337687 100755 --- a/scripts/avd_test.sh +++ b/scripts/avd_test.sh @@ -134,7 +134,7 @@ test_main() { if [ -z "$AVD_TEST_SKIP_DEBUG" ]; then # Patch and test debug build - ./build.py avd_patch "$ramdisk" magisk_patched.img + ./build.py -v avd_patch "$ramdisk" magisk_patched.img kill -INT $emu_pid wait $emu_pid test_emu debug $api @@ -142,7 +142,7 @@ test_main() { if [ -z "$AVD_TEST_SKIP_RELEASE" ]; then # Patch and test release build - ./build.py -r avd_patch "$ramdisk" magisk_patched.img + ./build.py -vr avd_patch "$ramdisk" magisk_patched.img kill -INT $emu_pid wait $emu_pid test_emu release $api diff --git a/scripts/cuttlefish.sh b/scripts/cuttlefish.sh index 8c60e4abb..f4ec6d9f8 100755 --- a/scripts/cuttlefish.sh +++ b/scripts/cuttlefish.sh @@ -85,11 +85,11 @@ test_main() { adb wait-for-device # Patch and test debug build - ./build.py avd_patch "$CF_HOME/init_boot.img" magisk_patched.img + ./build.py -v avd_patch "$CF_HOME/init_boot.img" magisk_patched.img test_cf debug # Patch and test release build - ./build.py -r avd_patch "$CF_HOME/init_boot.img" magisk_patched.img + ./build.py -vr avd_patch "$CF_HOME/init_boot.img" magisk_patched.img test_cf release # Cleanup