mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 06:22:53 +00:00
These tests assumed that they were rooted before running, and due to a combination of b/152655658 and b/154638140, these appeared to work when a device already happened to be rooted and the test failures showed up as problems with the test rather than as problems with the target preparer. This is the same workaround being used elsewhere. Fixes: 154445273 # specifically about VtsHalSapV1_0TargetTest Test: atest VtsHalSapV1_0TargetTest # passes 100% The following tests, I confirm MultiSimTargetPreparer works, although my test device has no SIM so I cannot get fully useful results. Test: atest VtsHalRadioV1_0TargetTest # slot2 cases can now pass Test: atest VtsHalRadioV1_1TargetTest # slot2 cases can now pass Test: atest VtsHalRadioV1_2TargetTest # slot2 cases can now pass Test: atest VtsHalRadioV1_3TargetTest # fully passes Test: atest VtsHalRadioV1_4TargetTest # fully passes Change-Id: Id62cb2e1b7a95552b560ab1d4ff2f63c0a7569a3
35 lines
1.6 KiB
XML
35 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2019 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<configuration description="Runs VtsHalRadioV1_2TargetTest.">
|
|
<option name="test-suite-tag" value="apct" />
|
|
<option name="test-suite-tag" value="apct-native" />
|
|
|
|
<!-- TODO: b/154638140, b/152655658: bad interactions -->
|
|
<target_preparer class="com.android.tradefed.targetprep.RootTargetPreparer" />
|
|
<target_preparer class="com.android.tradefed.targetprep.MultiSimPreparer" />
|
|
<target_preparer class="com.android.tradefed.targetprep.RootTargetPreparer" />
|
|
|
|
<target_preparer class="com.android.tradefed.targetprep.PushFilePreparer">
|
|
<option name="cleanup" value="true" />
|
|
<option name="push" value="VtsHalRadioV1_2TargetTest->/data/local/tmp/VtsHalRadioV1_2TargetTest" />
|
|
</target_preparer>
|
|
|
|
<test class="com.android.tradefed.testtype.GTest" >
|
|
<option name="native-test-device-path" value="/data/local/tmp" />
|
|
<option name="module-name" value="VtsHalRadioV1_2TargetTest" />
|
|
</test>
|
|
</configuration>
|