mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:50:18 +00:00
Do not check the returned value in the
VTS test for IWifiChip#getFeatureSet.
Some implementations of the legacy HAL,
such as Goldfish, do not have any
supported features.
Bug: 273886122
Test: atest VtsHalWifiChipTargetTest
(tested on Cuttlefish)
Change-Id: I3ca22187cab0e77d36a28908e57ff4970535e4ae
This commit is contained in:
@@ -189,8 +189,8 @@ TEST_P(WifiChipAidlTest, RegisterEventCallback) {
|
||||
*/
|
||||
TEST_P(WifiChipAidlTest, GetFeatureSet) {
|
||||
configureChipForConcurrencyType(IfaceConcurrencyType::STA);
|
||||
int32_t features = getChipFeatureSet(wifi_chip_);
|
||||
EXPECT_NE(features, 0);
|
||||
int32_t features;
|
||||
EXPECT_TRUE(wifi_chip_->getFeatureSet(&features).isOk());
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user