Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 90059381 authored by Gabriel Biren's avatar Gabriel Biren
Browse files

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
parent 9074fdc1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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());
}

/*