diff options
| author | 2017-04-11 18:03:36 +0000 | |
|---|---|---|
| committer | 2017-04-11 18:03:38 +0000 | |
| commit | 07f8d8619f9a90fad17c261c3025a6eb6c0c94c1 (patch) | |
| tree | c5f2cf2973edfcacd625608727d6dce21519ac18 | |
| parent | 26c25d5da32fe1bdd94dd1404197c14994ecab60 (diff) | |
| parent | d5886c96d3714870f29cb1f4b948f50eb06c1afd (diff) | |
Merge "target_config: add art-test-javac target"
| -rw-r--r-- | test/testrunner/target_config.py | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/test/testrunner/target_config.py b/test/testrunner/target_config.py index 82f7832e72..8e29b8e20a 100644 --- a/test/testrunner/target_config.py +++ b/test/testrunner/target_config.py @@ -19,8 +19,8 @@ target_config = { ########################################## - # ART run-test configurations - # (calls testrunner which builds and then runs the test targets) + # General ART configurations. + # Calls make and testrunner both. 'art-test' : { 'make' : 'test-art-host-gtest', @@ -29,6 +29,19 @@ target_config = { 'ART_USE_READ_BARRIER' : 'false' } }, + + 'art-test-javac' : { + 'make' : 'test-art-host-gtest', + 'run-test' : [], + 'env' : { + 'ANDROID_COMPILE_WITH_JACK' : 'false', + 'ART_USE_READ_BARRIER' : 'true' + } + }, + + # ART run-test configurations + # (calls testrunner which builds and then runs the test targets) + 'art-interpreter' : { 'run-test' : ['--interpreter'], 'env' : { |