From 2b3d7740fbefb0802153739a4a73553023b9b4d3 Mon Sep 17 00:00:00 2001 From: Pengquan Meng Date: Wed, 22 May 2019 12:00:19 -0700 Subject: [PATCH] Send LTE|LTE_CA to modem in vts Bug: 132057161 Test: vts Change-Id: I963933aff316318053546b54ca680cb65e6a290a --- radio/1.4/vts/functional/radio_hidl_hal_api.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/radio/1.4/vts/functional/radio_hidl_hal_api.cpp b/radio/1.4/vts/functional/radio_hidl_hal_api.cpp index 2093c25475..696c746d65 100644 --- a/radio/1.4/vts/functional/radio_hidl_hal_api.cpp +++ b/radio/1.4/vts/functional/radio_hidl_hal_api.cpp @@ -119,6 +119,10 @@ TEST_F(RadioHidlTest_v1_4, setPreferredNetworkTypeBitmap) { network_type_bitmap |= ::android::hardware::radio::V1_4::RadioAccessFamily::LTE; + // TODO(b/131634656): LTE_CA will be sent to modem as a RAF in Q, but LTE_CA is not a RAF, + // we will not send it to modem as a RAF in R. + network_type_bitmap |= ::android::hardware::radio::V1_4::RadioAccessFamily::LTE_CA; + Return res = radio_v1_4->setPreferredNetworkTypeBitmap(serial, network_type_bitmap); ASSERT_OK(res);