Loading radio/aidl/vts/radio_modem_test.cpp +7 −0 Original line number Diff line number Diff line Loading @@ -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(); Loading radio/aidl/vts/radio_sim_test.cpp +8 −0 Original line number Diff line number Diff line Loading @@ -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; Loading Loading
radio/aidl/vts/radio_modem_test.cpp +7 −0 Original line number Diff line number Diff line Loading @@ -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(); Loading
radio/aidl/vts/radio_sim_test.cpp +8 −0 Original line number Diff line number Diff line Loading @@ -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; Loading