blob: 410f92dfff5094591902fbd0ab0f5d99b64325c3 (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
#!/bin/sh
known_tests=(
bluetooth_test_common
bluetoothtbd_test
net_test_audio_a2dp_hw_qti
net_test_bluetooth
net_test_btcore_qti
net_test_bta_qti
net_test_btif_qti
net_test_btif_profile_queue_qti
net_test_device_qti
net_test_hci_qti
net_test_stack_qti
net_test_stack_multi_adv_qti
net_test_stack_ad_parser_qti
net_test_stack_smp_qti
net_test_types_qti
net_test_btu_message_loop_qti
net_test_osi_qti
performance_test
)
known_remote_tests=(
net_test_rfcomm
)
usage() {
binary="$(basename "$0")"
echo "Usage: ${binary} --help"
echo " ${binary} [-i <iterations>] [-s <specific device>] [--all] [<test name>[.<filter>] ...] [--<arg> ...]"
echo
echo "Unknown long arguments are passed to the test."
echo
echo "Known test names:"
for name in "${known_tests[@]}"
do
echo " ${name}"
done
echo
echo "Known tests that need a remote device:"
for name in "${known_remote_tests[@]}"
do
echo " ${name}"
done
}
iterations=1
device=
tests=()
test_args=()
while [ $# -gt 0 ]
do
case "$1" in
-h|--help)
usage
exit 0
;;
-i)
shift
if [ $# -eq 0 ]; then
echo "error: number of iterations expected" 1>&2
usage
exit 2
fi
iterations=$(( $1 ))
shift
;;
-s)
shift
if [ $# -eq 0 ]; then
echo "error: no device specified" 1>&2
usage
exit 2
fi
device="$1"
shift
;;
--all)
tests+=( "${known_tests[@]}" )
shift
;;
--*)
test_args+=( "$1" )
shift
;;
*)
tests+=( "$1" )
shift
;;
esac
done
if [ "${#tests[@]}" -eq 0 ]; then
tests+=( "${known_tests[@]}" )
fi
adb=( "adb" )
if [ -n "${device}" ]; then
adb+=( "-s" "${device}" )
fi
failed_tests=()
for spec in "${tests[@]}"
do
name="${spec%%.*}"
binary="/data/nativetest/${name}/${name}"
push_command=( "${adb[@]}" push {"${ANDROID_PRODUCT_OUT}",}"${binary}" )
test_command=( "${adb[@]}" shell "LD_LIBRARY_PATH=/system/lib/hw:$LD_LIBRARY_PATH ${binary}" )
if [ "${name}" != "${spec}" ]; then
filter="${spec#*.}"
test_command+=( "--gtest_filter=${filter}" )
fi
test_command+=( "${test_args[@]}" )
echo "--- ${name} ---"
echo "pushing..."
"${push_command[@]}"
echo "running..."
failed_count=0
for i in $(seq 1 ${iterations})
do
"${test_command[@]}" || failed_count=$(( $failed_count + 1 ))
done
if [ $failed_count != 0 ]; then
failed_tests+=( "${name} ${failed_count}/${iterations}" )
fi
done
if [ "${#failed_tests[@]}" -ne 0 ]; then
for failed_test in "${failed_tests[@]}"
do
echo "!!! FAILED TEST: ${failed_test} !!!"
done
exit 1
fi
exit 0
|