Ignore new tests of IRadioSim, IRadioModem V2 in devices with V1

Bug: 270513760
Test: atest VtsHalRadioTargetTest:PerInstance/RadioSimTest, atest VtsHalRadioTargetTest:PerInstance/RadioModemTest
Change-Id: Ia981f1f341c6d2ebe3c7ff768505057140c9d718
This commit is contained in:
Muralidhar Reddy 2023-04-12 12:55:19 +00:00
parent 42df448bed
commit eb1c617446
2 changed files with 15 additions and 0 deletions

View file

@ -191,6 +191,13 @@ TEST_P(RadioModemTest, getDeviceIdentity) {
* Test IRadioModem.getImei() for the response returned.
*/
TEST_P(RadioModemTest, getImei) {
int32_t aidl_version;
ndk::ScopedAStatus aidl_status = radio_modem->getInterfaceVersion(&aidl_version);
ASSERT_OK(aidl_status);
if (aidl_version < 2) {
ALOGI("Skipped the test since getImei is not supported on version < 2");
GTEST_SKIP();
}
LOG(DEBUG) << "getImei";
serial = GetRandomSerialNumber();

View file

@ -765,6 +765,14 @@ TEST_P(RadioSimTest, iccCloseLogicalChannel) {
* Test IRadioSim.iccCloseLogicalChannelWithSessionInfo() for the response returned.
*/
TEST_P(RadioSimTest, iccCloseLogicalChannelWithSessionInfo) {
int32_t aidl_version;
ndk::ScopedAStatus aidl_status = radio_sim->getInterfaceVersion(&aidl_version);
ASSERT_OK(aidl_status);
if (aidl_version < 2) {
ALOGI("Skipped the test since"
" iccCloseLogicalChannelWithSessionInfo is not supported on version < 2");
GTEST_SKIP();
}
LOG(DEBUG) << "iccCloseLogicalChannelWithSessionInfo";
serial = GetRandomSerialNumber();
SessionInfo info;