summaryrefslogtreecommitdiff
path: root/android-tools/test-nexus7.sh
blob: 93c19efd8a98e892b89a32b9c9c47611a9d8c74a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

tests="antutu3 benchmarkpi caffeinemark linpack quadrantpro vellamo3 antutu2"
export ANDROID_SERIAL=0a22bd5c
for test_name in $tests; do
    if [ -f ./${test_name}/execute.sh ]; then
        adb reboot
        adb wait-for-device
        sleep 3
        adb shell disablesuspend.sh
        ./${test_name}/execute.sh
        mv rawdata.zip thumb-${test_name}.zip
    fi
done