blob: f0b107222af4a0e36edcd9e4735e80e578d95cd9 [file] [log] [blame]
Bernardo Rufinod1ea7f72020-09-28 20:14:54 +00001{
2 "presubmit": [
3 {
4 "name": "CtsWindowManagerDeviceTestCases",
5 "options": [
6 {
7 "include-filter": "android.server.wm.WindowInputTests"
8 }
9 ]
Siarhei Vishniakoua8388392020-10-21 23:58:48 -050010 },
11 {
12 "name": "libinput_tests"
13 },
14 {
15 "name": "inputflinger_tests"
16 },
17 {
Ben Murdochbc4cac92022-11-22 13:27:23 +000018 "name": "libchrome-gestures_test"
19 },
20 {
Siarhei Vishniakoue1238832021-12-09 17:14:49 -080021 "name": "libpalmrejection_test"
22 },
23 {
Siarhei Vishniakoua8388392020-10-21 23:58:48 -050024 "name": "InputTests"
25 },
26 {
27 "name": "libinputservice_test"
Siarhei Vishniakou2500bd62020-11-12 14:43:09 -060028 },
29 {
Prabir Pradhan310702e2022-07-27 17:16:40 +000030 "name": "libgui_test",
31 "options": [
32 {
33 "native-test-flag": "--gtest_filter=\"InputSurfacesTest*:MultiDisplayTests*\""
34 }
35 ]
36 },
37 {
Prabir Pradhance556602022-05-05 16:43:14 +000038 "name": "CtsHardwareTestCases",
39 "options": [
40 {
41 "include-filter": "android.hardware.input.cts.tests"
42 }
43 ]
44 },
45 {
Siarhei Vishniakou2500bd62020-11-12 14:43:09 -060046 "name": "CtsInputTestCases"
47 },
48 {
49 "name": "CtsViewTestCases",
50 "options": [
51 {
Prabir Pradhanc58ebaa2022-09-14 18:23:11 +000052 "include-filter": "android.view.cts.input",
Siarhei Vishniakou481ff8d2023-02-01 14:14:05 -080053 "include-filter": "android.view.cts.HoverTest",
Siarhei Vishniakou70fac282021-07-01 20:32:02 +000054 "include-filter": "android.view.cts.MotionEventTest",
Prabir Pradhan3fa94792022-05-05 21:12:06 +000055 "include-filter": "android.view.cts.PointerCaptureTest",
Siarhei Vishniakou0b0374d2022-11-17 17:40:53 -080056 "include-filter": "android.view.cts.TooltipTest",
Siarhei Vishniakou5cd1a282023-02-15 03:49:36 +000057 "include-filter": "android.view.cts.TouchDelegateTest",
Siarhei Vishniakou481ff8d2023-02-01 14:14:05 -080058 "include-filter": "android.view.cts.VelocityTrackerTest",
Siarhei Vishniakou5cd1a282023-02-15 03:49:36 +000059 "include-filter": "android.view.cts.VerifyInputEventTest",
60 "include-filter": "android.view.cts.ViewTest",
61 "include-filter": "android.view.cts.ViewUnbufferedTest"
Siarhei Vishniakou2500bd62020-11-12 14:43:09 -060062 }
63 ]
64 },
65 {
Siarhei Vishniakoud7f43132022-07-08 10:52:26 -070066 "name": "CtsWidgetTestCases",
67 "options": [
68 {
Siarhei Vishniakou5cd1a282023-02-15 03:49:36 +000069 "include-filter": "android.widget.cts.NumberPickerTest",
70 "include-filter": "android.widget.cts.SeekBarTest"
Siarhei Vishniakoud7f43132022-07-08 10:52:26 -070071 }
72 ]
73 },
74 {
Siarhei Vishniakouf00a4ec2021-06-16 03:55:32 +000075 "name": "FrameworksCoreTests",
76 "options": [
77 {
Prabir Pradhan0e56ec02023-01-23 09:01:12 +000078 "include-filter": "android.hardware.input",
Siarhei Vishniakouf00a4ec2021-06-16 03:55:32 +000079 "include-filter": "android.view.VerifiedKeyEventTest",
80 "include-filter": "android.view.VerifiedMotionEventTest"
81 }
82 ]
83 },
84 {
Prabir Pradhanc934d0f2022-05-05 21:07:05 +000085 "name": "FrameworksServicesTests",
86 "options": [
87 {
88 "include-filter": "com.android.server.input"
89 }
90 ]
91 },
92 {
Siarhei Vishniakou2500bd62020-11-12 14:43:09 -060093 "name": "CtsSecurityTestCases",
94 "options": [
95 {
96 "include-filter": "android.security.cts.MotionEventTest"
97 }
98 ]
Siarhei Vishniakouef931142021-03-31 00:11:30 +000099 },
100 {
101 "name": "CtsSecurityBulletinHostTestCases",
102 "options": [
103 {
104 "include-filter": "android.security.cts.Poc19_03#testPocBug_115739809"
105 }
106 ]
Bernardo Rufinod1ea7f72020-09-28 20:14:54 +0000107 }
Siarhei Vishniakou690ae7c2022-05-31 10:05:00 -0700108 ],
109 "hwasan-postsubmit": [
110 {
111 "name": "CtsWindowManagerDeviceTestCases",
112 "options": [
113 {
114 "include-filter": "android.server.wm.WindowInputTests"
115 }
116 ]
117 },
118 {
119 "name": "libinput_tests"
120 },
121 {
122 "name": "inputflinger_tests"
123 },
124 {
125 "name": "libpalmrejection_test"
126 },
127 {
128 "name": "InputTests"
129 },
130 {
131 "name": "libinputservice_test"
132 },
133 {
Prabir Pradhan310702e2022-07-27 17:16:40 +0000134 "name": "libgui_test",
135 "options": [
136 {
137 "native-test-flag": "--gtest_filter=\"InputSurfacesTest*:MultiDisplayTests*\""
138 }
139 ]
140 },
141 {
Siarhei Vishniakou690ae7c2022-05-31 10:05:00 -0700142 "name": "CtsHardwareTestCases",
143 "options": [
144 {
145 "include-filter": "android.hardware.input.cts.tests"
146 }
147 ]
148 },
149 {
150 "name": "CtsInputTestCases"
151 },
152 {
153 "name": "CtsViewTestCases",
154 "options": [
155 {
Siarhei Vishniakou481ff8d2023-02-01 14:14:05 -0800156 "include-filter": "android.view.cts.input",
157 "include-filter": "android.view.cts.HoverTest",
Siarhei Vishniakou690ae7c2022-05-31 10:05:00 -0700158 "include-filter": "android.view.cts.MotionEventTest",
159 "include-filter": "android.view.cts.PointerCaptureTest",
Siarhei Vishniakou0b0374d2022-11-17 17:40:53 -0800160 "include-filter": "android.view.cts.TooltipTest",
Siarhei Vishniakou5cd1a282023-02-15 03:49:36 +0000161 "include-filter": "android.view.cts.TouchDelegateTest",
Siarhei Vishniakou481ff8d2023-02-01 14:14:05 -0800162 "include-filter": "android.view.cts.VelocityTrackerTest",
Siarhei Vishniakou5cd1a282023-02-15 03:49:36 +0000163 "include-filter": "android.view.cts.VerifyInputEventTest",
164 "include-filter": "android.view.cts.ViewTest",
165 "include-filter": "android.view.cts.ViewUnbufferedTest"
Siarhei Vishniakou690ae7c2022-05-31 10:05:00 -0700166 }
167 ]
168 },
169 {
Siarhei Vishniakoud7f43132022-07-08 10:52:26 -0700170 "name": "CtsWidgetTestCases",
171 "options": [
172 {
Siarhei Vishniakou5cd1a282023-02-15 03:49:36 +0000173 "include-filter": "android.widget.cts.NumberPickerTest",
174 "include-filter": "android.widget.cts.SeekBarTest"
Siarhei Vishniakoud7f43132022-07-08 10:52:26 -0700175 }
176 ]
177 },
178 {
Siarhei Vishniakou690ae7c2022-05-31 10:05:00 -0700179 "name": "FrameworksCoreTests",
180 "options": [
181 {
182 "include-filter": "android.view.VerifiedKeyEventTest",
183 "include-filter": "android.view.VerifiedMotionEventTest"
184 }
185 ]
186 },
187 {
188 "name": "FrameworksServicesTests",
189 "options": [
190 {
191 "include-filter": "com.android.server.input"
192 }
193 ]
194 },
195 {
196 "name": "CtsSecurityTestCases",
197 "options": [
198 {
199 "include-filter": "android.security.cts.MotionEventTest"
200 }
201 ]
202 },
203 {
204 "name": "CtsSecurityBulletinHostTestCases",
205 "options": [
206 {
207 "include-filter": "android.security.cts.Poc19_03#testPocBug_115739809"
208 }
209 ]
210 }
Bernardo Rufinod1ea7f72020-09-28 20:14:54 +0000211 ]
212}