We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 491368e commit 2211893Copy full SHA for 2211893
scripts/run_android_emulator.sh
@@ -18,9 +18,13 @@ adb shell "free -h"
18
adb uninstall org.pytorch.executorch.test || true
19
adb install -t android-test-debug-androidTest.apk
20
21
+for i in {1..40}; do
22
+ adb shell 'free -h'
23
+ sleep 1
24
+done &
25
+
26
adb logcat -c
-adb shell am instrument -w -r -e \
- class org.pytorch.executorch.ModuleInstrumentationTest,org.pytorch.executorch.ModuleE2ETest \
27
+adb shell am instrument -w -r \
28
org.pytorch.executorch.test/androidx.test.runner.AndroidJUnitRunner >result.txt 2>&1
29
adb logcat -d > logcat.txt
30
adb shell dumpsys meminfo
0 commit comments