summaryrefslogtreecommitdiff
path: root/andebench/vc.py
blob: 6b0ada921b53d676a1a5b65735855ca6a02bd4a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import re
import sys
import os
import time
from subprocess import call

from com.dtmilano.android.viewclient import ViewClient, ViewNotFoundException

kwargs1 = {'verbose': False, 'ignoresecuredevice': False}
device, serialno = ViewClient.connectToDeviceOrExit(**kwargs1)
kwargs2 = {'startviewserver': True, 'forceviewserveruse': False, 'autodump': False, 'ignoreuiautomatorkilled': True, 'compresseddump': False}
vc = ViewClient(device, serialno, **kwargs2)
vc.dump('-1')
btn_start_on = vc.findViewByIdOrRaise("com.eembc.coremark:id/btn_start_on")
btn_start_on.touch()
finished = False
while(not finished):
    try:
        time.sleep(5)
        vc.dump('-1')
        results = vc.findViewByIdOrRaise("com.eembc.coremark:id/cid")
        if not results.getText().find("Running") > 0:
            finished = True
            print "benchmark finished"
            result_re = re.compile("(?P<test_case_id>[a-zA-Z\s]+):\s(?P<measurement>\d+)", re.MULTILINE)
            search_results = result_re.finditer(results.getText())
            for result in search_results:
                call(['lava-test-case', result.group('test_case_id'), '--result', 'pass', '--measurement', result.group('measurement'), '--units', 'Iterations/sec'])
    except ViewNotFoundException:
        pass
    except RuntimeError:
        pass

"""
try:
    progress_button = vc.findViewByIdOrRaise("com.eembc.coremark:id/btn_progress2")
except ViewNotFoundException:
    pass

try:
    progress_button = vc.findViewByIdOrRaise("com.eembc.coremark:id/btn_progress1")
except ViewNotFoundException:
    pass

if not progress_button:
    sys.exit(1)
progress_found = True

while(progress_found):
    try:
        time.sleep(3)
        vc.dump('-1')
    except RuntimeError:
        pass
    found1 = True
    found2 = True
    try:
        progress_button = vc.findViewByIdOrRaise("com.eembc.coremark:id/btn_progress1")
    except ViewNotFoundException:
        found1 = False
    try:
        progress_button = vc.findViewByIdOrRaise("com.eembc.coremark:id/btn_progress2")
    except ViewNotFoundException:
        found2 = False

    if not (found1 or found2):
        progress_found = False
print "benchmark finished"

time.sleep(3)
vc.dump('-1')
results = vc.findViewByIdOrRaise("com.eembc.coremark:id/cid")
results_text = results.getText()
#Results in Iterations/sec:
#AndEMark Native: 6335
#AndEMark Java: 377
result_re = re.compile("^(?P<test_case_id>[a-zA-Z\s]+):\s(?P<measurement>\d+)", re.MULTILINE)
search_results = result_re.finditer(results_text)
for result in search_results:
    call(['lava-test-case', result.group('test_case_id'), '--result', 'pass', '--measurement', result.group('measurement'), '--units', 'Iterations/sec'])
"""