diff options
| author | 2019-09-11 11:29:49 -0700 | |
|---|---|---|
| committer | 2019-09-11 13:43:48 -0700 | |
| commit | 816a5528f292afffe8375a403c9fbf8840a7d51a (patch) | |
| tree | 7dffa184382d8bf3195f30b37b2b5ee4ace5c49b | |
| parent | a61380851f3e9a66eed41e8620ff673f8bdec27a (diff) | |
ART: Add signal_dumper to testing APEX
Bug: 138868214
Test: mmma art
Test: manual
Change-Id: Iec58a4f31836477aba93f0f94ce9863691099d19
| -rw-r--r-- | build/apex/Android.bp | 1 | ||||
| -rwxr-xr-x | build/apex/art_apex_test.py | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/build/apex/Android.bp b/build/apex/Android.bp index 3f8741290f..a7366c9d37 100644 --- a/build/apex/Android.bp +++ b/build/apex/Android.bp @@ -349,6 +349,7 @@ apex_test { file_contexts: "com.android.art.debug", certificate: ":com.android.art.certificate", tests: art_gtests, + binaries: ["signal_dumper"], // Need signal_dumper for run-tests. } // TODO: Do this better. art_apex_test_host will disable host builds when diff --git a/build/apex/art_apex_test.py b/build/apex/art_apex_test.py index 746bf7ad28..7a992e643e 100755 --- a/build/apex/art_apex_test.py +++ b/build/apex/art_apex_test.py @@ -899,6 +899,9 @@ class TestingTargetChecker: self._checker.check_native_library('libartd-disassembler') self._checker.check_native_library('libartd-simulator-container') + # Check ART test tools. + self._checker.check_executable('signal_dumper') + class NoSuperfluousBinariesChecker: def __init__(self, checker): |