diff options
| -rw-r--r-- | libs/binder/TEST_MAPPING | 13 | ||||
| -rw-r--r-- | libs/binder/tests/Android.bp | 3 |
2 files changed, 16 insertions, 0 deletions
diff --git a/libs/binder/TEST_MAPPING b/libs/binder/TEST_MAPPING new file mode 100644 index 0000000000..91b75c7fda --- /dev/null +++ b/libs/binder/TEST_MAPPING @@ -0,0 +1,13 @@ +{ + "presubmit": [ + { + "name": "binderDriverInterfaceTest" + }, + { + "name": "binderValueTypeTest" + }, + { + "name": "binderTextOutputTest" + } + ] +} diff --git a/libs/binder/tests/Android.bp b/libs/binder/tests/Android.bp index 3e005c958e..14ca821481 100644 --- a/libs/binder/tests/Android.bp +++ b/libs/binder/tests/Android.bp @@ -42,6 +42,7 @@ cc_test { }, srcs: ["binderDriverInterfaceTest.cpp"], + test_suites: ["device-tests"], } cc_test { @@ -52,6 +53,7 @@ cc_test { "libbinder", "libutils", ], + test_suites: ["device-tests"], } cc_test { @@ -108,6 +110,7 @@ cc_test { "libutils", "libbase", ], + test_suites: ["device-tests"], } cc_test { |