Merge "Verify there are no more current calls" into qt-dev am: 1f12b5323a am: 4f1b208f66

am: b3e85409d9

Change-Id: I72cb6903c4e875527afe3abce7b54699de05c24f
This commit is contained in:
sqian 2019-07-30 16:35:32 -07:00 committed by android-build-merger
commit da35887247

View file

@ -102,6 +102,12 @@ void RadioHidlTest_v1_4::clearPotentialEstablishedCalls() {
// Give some time for modem to disconnect the established call channel.
sleep(MODEM_EMERGENCY_CALL_DISCONNECT_TIME);
}
// Verify there are no more current calls.
serial = GetRandomSerialNumber();
radio_v1_4->getCurrentCalls(serial);
EXPECT_EQ(std::cv_status::no_timeout, wait());
EXPECT_EQ(0, radioRsp_v1_4->currentCalls.size());
}
void RadioHidlTest_v1_4::updateSimCardStatus() {