From 85f0fca1f071250fcb8f286e6bca30d0fcd8a965 Mon Sep 17 00:00:00 2001 From: paulhu Date: Fri, 10 Apr 2020 11:09:14 +0800 Subject: [PATCH] Add more tests to CtsTetheringTest Add TetheringIntegrationTests into CtsTetheringTest Bug: 148636687 Test: atest CtsTetheringTest atest TetheringIntegrationTests Change-Id: I606097a8db9ed3d2b3eaf933bb1d904e437ab27d --- tests/cts/tethering/Android.bp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/cts/tethering/Android.bp b/tests/cts/tethering/Android.bp index 0f98125d6f..63de301d69 100644 --- a/tests/cts/tethering/Android.bp +++ b/tests/cts/tethering/Android.bp @@ -25,12 +25,19 @@ android_test { ], static_libs: [ + "TetheringIntegrationTestsLib", "compatibility-device-util-axt", "ctstestrunner-axt", "junit", "junit-params", ], + jni_libs: [ + // For mockito extended + "libdexmakerjvmtiagent", + "libstaticjvmtiagent", + ], + // Change to system current when TetheringManager move to bootclass path. platform_apis: true, @@ -41,4 +48,6 @@ android_test { "mts", ], + // Include both the 32 and 64 bit versions + compile_multilib: "both", }