diff options
| author | 2018-11-13 14:03:02 -0800 | |
|---|---|---|
| committer | 2018-11-13 14:45:30 -0800 | |
| commit | cbdca728b45a3eae3f6f7da4b499b292ebc42ea5 (patch) | |
| tree | 056328157334dd17c3e1b7ed4140702e29759f7d /test/testrunner/target_config.py | |
| parent | bad5c9a1f43148dc71f3b8e61cc201bc815fbac6 (diff) | |
Add art-linux-bionic-x64 target-config
This config can be used to run linux_bionic tests. Updated
run_build_test_target.py to support allowing fully custom build
instructions (Linux_Bionic cannot be built with a simple make
command).
Test: ./art/test/testrunner/run_build_test_target.py -j72 art-linux-bionic-x64
Bug: 118778408
Change-Id: I27d12c508407e318d31fc50e541f7d990118e7b6
Diffstat (limited to 'test/testrunner/target_config.py')
| -rw-r--r-- | test/testrunner/target_config.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/testrunner/target_config.py b/test/testrunner/target_config.py index 9efe435dc2..077129fa6c 100644 --- a/test/testrunner/target_config.py +++ b/test/testrunner/target_config.py @@ -329,4 +329,11 @@ target_config = { 'art-golem-linux-x64': { 'golem' : 'linux-x64' }, + 'art-linux-bionic-x64': { + 'build': '{ANDROID_BUILD_TOP}/art/tools/build_linux_bionic_tests.sh {MAKE_OPTIONS}', + 'run-test': ['--run-test-option=--bionic', + '--host', + '--64', + '--no-build-dependencies'], + }, } |