mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:50:18 +00:00
Call close() in TearDown() am: 25cd9d67d5 am: 9fbde6a00d
Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/2254818 Change-Id: I7f94149b0dd0e8a47a7a5319e6f3b9d1a498f97b Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -104,7 +104,7 @@ interface IGnss {
|
||||
*
|
||||
* The framework calls this method to instruct the GPS engine to prepare for serving requests
|
||||
* from the framework. The GNSS HAL implementation must respond to all GNSS requests from the
|
||||
* framework upon successful return from this method until cleanup() method is called to
|
||||
* framework upon successful return from this method until close() method is called to
|
||||
* close this interface.
|
||||
*
|
||||
* @param callback Callback interface for IGnss.
|
||||
|
||||
@@ -107,6 +107,17 @@ void GnssHalTest::SetUpGnssCallback() {
|
||||
}
|
||||
}
|
||||
|
||||
void GnssHalTest::TearDown() {
|
||||
GnssHalTestTemplate<IGnss_V2_1>::TearDown();
|
||||
if (aidl_gnss_hal_ != nullptr) {
|
||||
aidl_gnss_hal_->close();
|
||||
aidl_gnss_hal_ = nullptr;
|
||||
}
|
||||
|
||||
// Set to nullptr to destruct the callback event queues and warn of any unprocessed events.
|
||||
aidl_gnss_cb_ = nullptr;
|
||||
}
|
||||
|
||||
void GnssHalTest::CheckLocation(const GnssLocation& location, bool check_speed) {
|
||||
Utils::checkLocation(location, check_speed, /* check_more_accuracies= */ true);
|
||||
}
|
||||
|
||||
@@ -64,6 +64,7 @@ class GnssHalTest : public android::hardware::gnss::common::GnssHalTestTemplate<
|
||||
|
||||
virtual void SetUp() override;
|
||||
virtual void SetUpGnssCallback() override;
|
||||
virtual void TearDown() override;
|
||||
|
||||
void CheckLocation(const android::hardware::gnss::GnssLocation& location,
|
||||
const bool check_speed);
|
||||
|
||||
Reference in New Issue
Block a user