diff options
| -rw-r--r-- | test/testrunner/target_config.py | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/test/testrunner/target_config.py b/test/testrunner/target_config.py index 297ce08bee..6d21442045 100644 --- a/test/testrunner/target_config.py +++ b/test/testrunner/target_config.py @@ -229,13 +229,10 @@ target_config = { }, 'art-heap-poisoning' : { 'run-test' : ['--interpreter', - '--optimizing', - '--cdex-fast'], + '--optimizing'], 'env' : { 'ART_USE_READ_BARRIER' : 'false', - 'ART_HEAP_POISONING' : 'true', - # Get some extra automated testing coverage for compact dex. - 'ART_DEFAULT_COMPACT_DEX_LEVEL' : 'fast' + 'ART_HEAP_POISONING' : 'true' } }, 'art-preopt' : { @@ -279,9 +276,7 @@ target_config = { 'make' : 'test-art-host-gtest', 'env': { 'ART_DEFAULT_GC_TYPE' : 'SS', - 'ART_USE_READ_BARRIER' : 'false', - # Get some extra automated testing coverage for compact dex. - 'ART_DEFAULT_COMPACT_DEX_LEVEL' : 'fast' + 'ART_USE_READ_BARRIER' : 'false' } }, 'art-gtest-gss-gc': { |