From c1b5f69ea03e176434e4375746fb87efeb6cb738 Mon Sep 17 00:00:00 2001 From: Devin Moore Date: Thu, 19 Jan 2023 21:13:36 +0000 Subject: [PATCH 1/2] Add bluetooth VTS to TEST_MAPPING Test: na Bug: 205758693 Change-Id: I1a64822740e4cff402a2b5bd62eed359e3c2f123 --- bluetooth/aidl/TEST_MAPPING | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 bluetooth/aidl/TEST_MAPPING diff --git a/bluetooth/aidl/TEST_MAPPING b/bluetooth/aidl/TEST_MAPPING new file mode 100644 index 0000000000..342a1e45ad --- /dev/null +++ b/bluetooth/aidl/TEST_MAPPING @@ -0,0 +1,7 @@ +{ + "presubmit" : [ + { + "name" : "VtsHalBluetoothTargetTest" + } + ] +} From 21ca742b9e1ee4c8807e97b495cb12b41702db81 Mon Sep 17 00:00:00 2001 From: Devin Moore Date: Fri, 20 Jan 2023 00:27:32 +0000 Subject: [PATCH 2/2] Move AIDL library from shared to static for BT VTS It can't find the .so in /system when the binary is pushed to the device. Test: na Bug: 205758693 Change-Id: Ie7e601285b96d8242d6c8e162c452363a78ed87e --- bluetooth/aidl/vts/Android.bp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bluetooth/aidl/vts/Android.bp b/bluetooth/aidl/vts/Android.bp index c6c9b9e605..414f707dfd 100644 --- a/bluetooth/aidl/vts/Android.bp +++ b/bluetooth/aidl/vts/Android.bp @@ -15,12 +15,12 @@ cc_test { ], srcs: ["VtsHalBluetoothTargetTest.cpp"], shared_libs: [ - "android.hardware.bluetooth-V1-ndk", "libbase", "libbinder_ndk", "libcutils", ], static_libs: [ + "android.hardware.bluetooth-V1-ndk", "libbluetooth-types", ], test_config: "VtsHalBluetoothTargetTest.xml",