diff options
| author | 2017-12-15 21:34:50 +0000 | |
|---|---|---|
| committer | 2017-12-15 21:34:50 +0000 | |
| commit | 1e61f980e8beaa6121baecd122db17bab5429e1b (patch) | |
| tree | 660430be730758723e50b2cb813810f2f214e9e8 /test | |
| parent | 7861b4bef2354f1ab7a726daa406098ff5855c42 (diff) | |
| parent | 8a34abcb8a74ecda146af761b390de753092da36 (diff) | |
Merge "Move art-heap-poisoning and art-gtest-ss-gc to test cdex"
Diffstat (limited to 'test')
| -rw-r--r-- | test/testrunner/target_config.py | 11 |
1 files changed, 8 insertions, 3 deletions
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': { |