diff options
| author | 2022-02-04 19:01:22 +0000 | |
|---|---|---|
| committer | 2022-02-04 19:01:22 +0000 | |
| commit | 12da9d735f6ce7aad53296a37cb5200db46cfc58 (patch) | |
| tree | a28214cb582b70d230f6329b0b9f1af9000a6e8a | |
| parent | 7f0cd40d2d5db7c49c2dc8fcca9e868a58c64fed (diff) | |
| parent | 48eeaa70b3609a2460f33ba58eaa82d68ee2b49a (diff) | |
libbinder: format tests bp am: ea7659e07b am: 48eeaa70b3
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1969561
Change-Id: If00f7ad11455d7096215d66ec520100282db9ec7
| -rw-r--r-- | libs/binder/tests/Android.bp | 42 |
1 files changed, 34 insertions, 8 deletions
diff --git a/libs/binder/tests/Android.bp b/libs/binder/tests/Android.bp index 86da5887a8..5e5c495e79 100644 --- a/libs/binder/tests/Android.bp +++ b/libs/binder/tests/Android.bp @@ -37,7 +37,11 @@ cc_test { srcs: ["binderDriverInterfaceTest.cpp"], header_libs: ["libbinder_headers"], compile_multilib: "32", - multilib: { lib32: { suffix: "" } }, + multilib: { + lib32: { + suffix: "", + }, + }, cflags: ["-DBINDER_IPC_32BIT=1"], test_suites: ["vts"], } @@ -52,7 +56,10 @@ cc_test { }, header_libs: ["libbinder_headers"], srcs: ["binderDriverInterfaceTest.cpp"], - test_suites: ["device-tests", "vts"], + test_suites: [ + "device-tests", + "vts", + ], } cc_test { @@ -69,7 +76,11 @@ cc_test { "libgmock", ], compile_multilib: "32", - multilib: { lib32: { suffix: "" } }, + multilib: { + lib32: { + suffix: "", + }, + }, cflags: ["-DBINDER_IPC_32BIT=1"], test_suites: ["vts"], require_root: true, @@ -84,7 +95,10 @@ cc_test { enabled: false, }, }, - srcs: ["binderParcelUnitTest.cpp", "binderBinderUnitTest.cpp"], + srcs: [ + "binderParcelUnitTest.cpp", + "binderBinderUnitTest.cpp", + ], shared_libs: [ "libbinder", "libcutils", @@ -112,7 +126,10 @@ cc_test { static_libs: [ "libgmock", ], - test_suites: ["device-tests", "vts"], + test_suites: [ + "device-tests", + "vts", + ], require_root: true, } @@ -232,7 +249,10 @@ cc_test { "libbinder_tls_test_utils", "libbinder_tls_static", ], - test_suites: ["general-tests", "device-tests"], + test_suites: [ + "general-tests", + "device-tests", + ], } cc_benchmark { @@ -348,7 +368,10 @@ cc_test { "liblog", "libutils", ], - test_suites: ["device-tests", "vts"], + test_suites: [ + "device-tests", + "vts", + ], require_root: true, } @@ -402,7 +425,10 @@ cc_test { "binderStabilityTestIface-ndk", ], - test_suites: ["device-tests", "vts"], + test_suites: [ + "device-tests", + "vts", + ], require_root: true, } |