Merge "Update Radio and Sap service name in VTS."
This commit is contained in:
commit
f7c337546a
4 changed files with 4 additions and 2 deletions
|
@ -18,7 +18,7 @@
|
|||
|
||||
void RadioHidlTest::SetUp() {
|
||||
radio = ::testing::VtsHalHidlTargetTestBase::getService<IRadio>(
|
||||
hidl_string("rild"));
|
||||
hidl_string(RADIO_SERVICE_NAME));
|
||||
ASSERT_NE(radio, nullptr);
|
||||
|
||||
radioRsp = new RadioResponse(*this);
|
||||
|
|
|
@ -81,6 +81,7 @@ using ::android::hardware::Void;
|
|||
using ::android::sp;
|
||||
|
||||
#define TIMEOUT_PERIOD 40
|
||||
#define RADIO_SERVICE_NAME "slot1"
|
||||
|
||||
class RadioHidlTest;
|
||||
extern CardStatus cardStatus;
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
void SapHidlTest::SetUp() {
|
||||
sap = ::testing::VtsHalHidlTargetTestBase::getService<ISap>(
|
||||
hidl_string("sap_uim_socket1"));
|
||||
hidl_string(SAP_SERVICE_NAME));
|
||||
ASSERT_NE(sap, nullptr);
|
||||
|
||||
sapCb = new SapCallback(*this);
|
||||
|
|
|
@ -34,6 +34,7 @@ using ::android::hardware::Void;
|
|||
using ::android::sp;
|
||||
|
||||
#define TIMEOUT_PERIOD 40
|
||||
#define SAP_SERVICE_NAME "slot1"
|
||||
|
||||
class SapHidlTest;
|
||||
|
||||
|
|
Loading…
Reference in a new issue