summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Igor Murashkin <iam@google.com> 2017-04-11 18:03:36 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-04-11 18:03:38 +0000
commit07f8d8619f9a90fad17c261c3025a6eb6c0c94c1 (patch)
treec5f2cf2973edfcacd625608727d6dce21519ac18
parent26c25d5da32fe1bdd94dd1404197c14994ecab60 (diff)
parentd5886c96d3714870f29cb1f4b948f50eb06c1afd (diff)
Merge "target_config: add art-test-javac target"
-rw-r--r--test/testrunner/target_config.py17
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' : {