File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 10081008 "description" : " The set of one or more versions of the device platform on which to run the test suite." ,
10091009 "type" : " array" ,
10101010 "minItems" : 1
1011+ },
1012+ "armRequired" : {
1013+ "description" : " Specifies if ARM architecture is required to run this test." ,
1014+ "type" : " boolean"
10111015 }
10121016 },
10131017 "required" : [
Original file line number Diff line number Diff line change 202202 "description" : " The set of one or more versions of the device platform on which to run the test suite." ,
203203 "type" : " array" ,
204204 "minItems" : 1
205+ },
206+ "armRequired" : {
207+ "description" : " Specifies if ARM architecture is required to run this test." ,
208+ "type" : " boolean"
205209 }
206210 },
207211 "required" : [
Original file line number Diff line number Diff line change @@ -189,6 +189,7 @@ suites:
189189 - name: "Google Pixel C GoogleAPI Emulator"
190190 platformVersions:
191191 - "8.1"
192+ armRequired: true
192193` , fs .WithMode (0655 )))
193194 defer dir .Remove ()
194195
@@ -233,6 +234,7 @@ suites:
233234 PlatformVersions : []string {
234235 "8.1" ,
235236 },
237+ ARMRequired : true ,
236238 },
237239 }},
238240 },
Original file line number Diff line number Diff line change @@ -249,6 +249,8 @@ func (r *EspressoRunner) newStartOptions(
249249 NetworkProfile : s .NetworkProfile ,
250250 NetworkConditions : configToJobNetworkConditions (s .NetworkConditions ),
251251
252+ ARMRequired : d .armRequired ,
253+
252254 // RDC Specific flags
253255 RealDevice : d .isRealDevice ,
254256 DeviceHasCarrier : d .hasCarrier ,
You can’t perform that action at this time.
0 commit comments