diff options
| -rw-r--r-- | cmds/statsd/Android.bp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/cmds/statsd/Android.bp b/cmds/statsd/Android.bp index 65061d0c9bda..56c213b08d51 100644 --- a/cmds/statsd/Android.bp +++ b/cmds/statsd/Android.bp @@ -290,7 +290,14 @@ cc_binary { cc_test { name: "statsd_test", defaults: ["statsd_defaults"], - test_suites: ["device-tests"], + test_suites: ["device-tests", "mts"], + + //TODO(b/153588990): Remove when the build system properly separates + //32bit and 64bit architectures. + multilib: { + lib32: { suffix: "32", }, + lib64: { suffix: "64", }, + }, cflags: [ "-Wall", |