commit | 2b09dc7eb421d076a83def2e175a271cf97a9648 | [log] [tgz] |
---|---|---|
author | Yuyang Huang <yuyanghuang@google.com> | Wed Dec 11 14:19:16 2024 -0800 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Dec 11 14:19:16 2024 -0800 |
tree | 7ed5c431f3380bf3a23be438be27524f0331d5e3 | |
parent | 092c0968190f4d49a31d6fd081b4e830ff3eb3b2 [diff] | |
parent | 39fdc470dcd7d7945b8e3dfdff6617becada4f9f [diff] |
Update APF VTS for VSR-14 compliance am: e2ff8e50bd am: 39fdc470dc Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/3402599 Change-Id: Iedd67e477113502b3564adfdbafd88d06fe28065 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/wifi/aidl/vts/functional/wifi_sta_iface_aidl_test.cpp b/wifi/aidl/vts/functional/wifi_sta_iface_aidl_test.cpp index e456e49..2ee960f 100644 --- a/wifi/aidl/vts/functional/wifi_sta_iface_aidl_test.cpp +++ b/wifi/aidl/vts/functional/wifi_sta_iface_aidl_test.cpp
@@ -175,9 +175,9 @@ EXPECT_TRUE(isFeatureSupported(IWifiStaIface::FeatureSetMask::APF)); StaApfPacketFilterCapabilities apf_caps = {}; EXPECT_TRUE(wifi_sta_iface_->getApfPacketFilterCapabilities(&apf_caps).isOk()); - // The APF version must be 4 and the usable memory must be at least + // The APF version must be 4 or higher and the usable memory must be at least // 1024 bytes. - EXPECT_EQ(apf_caps.version, 4); + EXPECT_GE(apf_caps.version, 4); EXPECT_GE(apf_caps.maxLength, 1024); } }