This commit is contained in:
the-themis-benchmarks 2021-06-03 02:24:11 -07:00
parent a4559038b6
commit 7f9d95bd8a
2 changed files with 2 additions and 2 deletions

View File

@ -769,7 +769,7 @@ python3 themis.py --no-headless --avd Android7.1 --apk ../nextcloud/nextcloud-#5
Here,
* `--login ../nextcloud/login-#5173.py` specifies the login script (which will be executed before GUI testing)
* In practice, we use the emulator snapshot to store the app login state beforehand.
# 3. Instructions for Reusing Themis

View File

@ -73,7 +73,7 @@ then
sleep 5 # wait for a few seconds before installation to avoid such error: "adb: connect error for write: closed"
adb -s $AVD_SERIAL install -g $APK_FILE &> $result_dir/install.log
echo "** INSTALL APP (${AVD_SERIAL})"
python3 $LOGIN_SCRIPT ${AVD_SERIAL} 2>&1 | tee $result_dir/login.log
python3 $LOGIN_SCRIPT ${AVD_SERIAL} monkey 2>&1 | tee $result_dir/login.log
# enable if use the snapshot (already login, do not need to install the app)
echo " *** Login SUCCESS ****" >> $result_dir/login.log