diff options
| author | 2019-07-11 21:29:39 -0700 | |
|---|---|---|
| committer | 2019-07-11 21:29:39 -0700 | |
| commit | af75deb237a64c0a8fada0facffe95d299cd3d73 (patch) | |
| tree | b5d7dfacc44aace7f083d5f8f304028a50414628 | |
| parent | 46c397f34f142257cf24ee6600902a608aa65739 (diff) | |
| parent | a18cfb64c9a524289b1ea568e6cb343c8076c158 (diff) | |
Merge "Add binder TEST_MAPPING files."
am: a18cfb64c9
Change-Id: I2aa698c76ef5343c7e5bc41298e6894f2880e581
| -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 { |