summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Mathieu Chartier <mathieuc@google.com> 2017-12-19 23:09:58 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-12-19 23:09:58 +0000
commitffc3be6b4a58c1ed172a5c890f8b8583a416998f (patch)
tree9edaf87245989ad6c29a96fefd5042de5cfda383
parenta6615945258f003756ce7f344670a2802fad7037 (diff)
parent532246e54787d3016882dfcc9e6d210c48a8c6d9 (diff)
Merge "Revert "Revert "Move art-heap-poisoning and art-gtest-ss-gc to test cdex"""
-rw-r--r--dex2oat/dex2oat_test.cc2
-rw-r--r--test/testrunner/target_config.py11
2 files changed, 10 insertions, 3 deletions
diff --git a/dex2oat/dex2oat_test.cc b/dex2oat/dex2oat_test.cc
index 7e90e51c73..e9610fd4f6 100644
--- a/dex2oat/dex2oat_test.cc
+++ b/dex2oat/dex2oat_test.cc
@@ -955,6 +955,8 @@ class Dex2oatUnquickenTest : public Dex2oatTest {
};
TEST_F(Dex2oatUnquickenTest, UnquickenMultiDex) {
+ // Disabled until figure out running compact dex + DexLayout causes quickening errors.
+ TEST_DISABLED_FOR_COMPACT_DEX();
RunUnquickenMultiDex();
}
diff --git a/test/testrunner/target_config.py b/test/testrunner/target_config.py
index 6d21442045..297ce08bee 100644
--- a/test/testrunner/target_config.py
+++ b/test/testrunner/target_config.py
@@ -229,10 +229,13 @@ target_config = {
},
'art-heap-poisoning' : {
'run-test' : ['--interpreter',
- '--optimizing'],
+ '--optimizing',
+ '--cdex-fast'],
'env' : {
'ART_USE_READ_BARRIER' : 'false',
- 'ART_HEAP_POISONING' : 'true'
+ 'ART_HEAP_POISONING' : 'true',
+ # Get some extra automated testing coverage for compact dex.
+ 'ART_DEFAULT_COMPACT_DEX_LEVEL' : 'fast'
}
},
'art-preopt' : {
@@ -276,7 +279,9 @@ target_config = {
'make' : 'test-art-host-gtest',
'env': {
'ART_DEFAULT_GC_TYPE' : 'SS',
- 'ART_USE_READ_BARRIER' : 'false'
+ 'ART_USE_READ_BARRIER' : 'false',
+ # Get some extra automated testing coverage for compact dex.
+ 'ART_DEFAULT_COMPACT_DEX_LEVEL' : 'fast'
}
},
'art-gtest-gss-gc': {