From 85e55aab654cc15c51b318331bd93d6dead9e744 Mon Sep 17 00:00:00 2001 From: JC Date: Fri, 26 Jan 2024 08:45:58 -0700 Subject: [PATCH] fix: integration test - reverting several things 6 --- scripts/integration_tests.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/integration_tests.sh b/scripts/integration_tests.sh index 6cf5fce3a..efb717901 100755 --- a/scripts/integration_tests.sh +++ b/scripts/integration_tests.sh @@ -261,7 +261,7 @@ if [[ $create_snapshot == true ]]; then echo no | avdmanager create avd --force --name "${avd_name}" --package "${sdk}" echo -e "\n\nWaiting for emulator to launch..." - nohup emulator -avd "${avd_name}" -netfast -no-window -no-audio -gpu swiftshader_indirect -no-boot-anim \ + nohup emulator -avd "${avd_name}" -netdelay none -netspeed full -no-window -no-audio -gpu swiftshader_indirect -no-boot-anim \ -no-snapshot-load -verbose -port 5554 &> /dev/null & wait_for $timeout_seconds check_launch echo "$(adb devices | grep emulator-5554 | cut -f1) launch successful" @@ -303,8 +303,8 @@ else fi echo -e "\n\nWaiting for emulator to launch..." - nohup emulator -avd "${avd_name}" -netfast -no-window -no-audio -gpu swiftshader_indirect -no-boot-anim \ - -no-snapshot-save -verbose -port 5554 &> "${test_report_dir}/emulator.txt" & + nohup emulator -avd "${avd_name}" -netdelay none -netspeed full -no-window -no-audio -gpu swiftshader_indirect -no-boot-anim \ + -no-snapshot-save -read-only -verbose -port 5554 &> "${test_report_dir}/emulator.txt" & wait_for $timeout_seconds check_launch echo "$(adb devices | grep emulator-5554 | cut -f1) launch successful" wait_for $timeout_seconds check_device_online