commit | 39fdc470dcd7d7945b8e3dfdff6617becada4f9f | [log] [tgz] |
---|---|---|
author | Yuyang Huang <yuyanghuang@google.com> | Wed Dec 11 13:56:32 2024 -0800 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Dec 11 13:56:32 2024 -0800 |
tree | 2b8ac529a5d11a034590084586e2d2c99bef2f5c | |
parent | 929e86965adc6fbf849c1e08a3d51632c32dc34e [diff] | |
parent | e2ff8e50bd1a7809d408d48125d8e8d034d48a0f [diff] |
Update APF VTS for VSR-14 compliance am: e2ff8e50bd Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/3402599 Change-Id: Icf644bb793f392f8d0fb72c7af7ef1f2431d2bcf 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); } }