commit | 81b3377ef4628e9fea3ca0b6ddaf52a7531f3027 | [log] [tgz] |
---|---|---|
author | Yuyang Huang <yuyanghuang@google.com> | Wed Dec 11 14:54:32 2024 -0800 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Dec 11 14:54:32 2024 -0800 |
tree | 79e8bca9ef587eecceb3f8d8ebea1ce2fb70c0b1 | |
parent | fdaa7643fcadea9e2936f985f8d3a82b586f2ab7 [diff] | |
parent | 380d1dc78d51a5ff68e62fc8cf5caaeb8a45dc5f [diff] |
Update APF VTS for VSR-14 compliance am: e2ff8e50bd am: 39fdc470dc am: 380d1dc78d Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/3402599 Change-Id: I8563f738f5f4ef727afff888ecc7803b4e253513 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); } }