diff options
| author | 2017-04-18 18:25:01 +0000 | |
|---|---|---|
| committer | 2017-04-18 18:25:02 +0000 | |
| commit | 741a81af441cbcb7255229bf250bc009d2894e92 (patch) | |
| tree | 508288450220028cfc2ebe5be668aa08623ad6cc | |
| parent | e4e7d601ef8c6b23f7598af2053549ca48fa6c2c (diff) | |
| parent | 245af87476b6784a2a1da04b47a0f1fc87ccc9c0 (diff) | |
Merge "Make ART build/test configurations use the CC collector by default."
| -rw-r--r-- | test/testrunner/target_config.py | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/test/testrunner/target_config.py b/test/testrunner/target_config.py index 95ab2e7875..6e47c5eb7a 100644 --- a/test/testrunner/target_config.py +++ b/test/testrunner/target_config.py @@ -26,7 +26,7 @@ target_config = { 'make' : 'test-art-host-gtest', 'run-test' : [], 'env' : { - 'ART_USE_READ_BARRIER' : 'false' + 'ART_USE_READ_BARRIER' : 'true' } }, @@ -45,19 +45,19 @@ target_config = { 'art-interpreter' : { 'run-test' : ['--interpreter'], 'env' : { - 'ART_USE_READ_BARRIER' : 'false' + 'ART_USE_READ_BARRIER' : 'true' } }, 'art-interpreter-access-checks' : { 'run-test' : ['--interp-ac'], 'env' : { - 'ART_USE_READ_BARRIER' : 'false' + 'ART_USE_READ_BARRIER' : 'true' } }, 'art-jit' : { 'run-test' : ['--jit'], 'env' : { - 'ART_USE_READ_BARRIER' : 'false' + 'ART_USE_READ_BARRIER' : 'true' } }, 'art-gcstress-gcverify': { @@ -167,51 +167,51 @@ target_config = { 'art-tracing' : { 'run-test' : ['--trace'], 'env' : { - 'ART_USE_READ_BARRIER' : 'false' + 'ART_USE_READ_BARRIER' : 'true' } }, 'art-interpreter-tracing' : { 'run-test' : ['--interpreter', '--trace'], 'env' : { - 'ART_USE_READ_BARRIER' : 'false', + 'ART_USE_READ_BARRIER' : 'true', } }, 'art-forcecopy' : { 'run-test' : ['--forcecopy'], 'env' : { - 'ART_USE_READ_BARRIER' : 'false', + 'ART_USE_READ_BARRIER' : 'true', } }, 'art-no-prebuild' : { 'run-test' : ['--no-prebuild'], 'env' : { - 'ART_USE_READ_BARRIER' : 'false', + 'ART_USE_READ_BARRIER' : 'true', } }, 'art-no-image' : { 'run-test' : ['--no-image'], 'env' : { - 'ART_USE_READ_BARRIER' : 'false', + 'ART_USE_READ_BARRIER' : 'true', } }, 'art-interpreter-no-image' : { 'run-test' : ['--interpreter', '--no-image'], 'env' : { - 'ART_USE_READ_BARRIER' : 'false', + 'ART_USE_READ_BARRIER' : 'true', } }, 'art-relocate-no-patchoat' : { 'run-test' : ['--relocate-npatchoat'], 'env' : { - 'ART_USE_READ_BARRIER' : 'false', + 'ART_USE_READ_BARRIER' : 'true', } }, 'art-no-dex2oat' : { 'run-test' : ['--no-dex2oat'], 'env' : { - 'ART_USE_READ_BARRIER' : 'false', + 'ART_USE_READ_BARRIER' : 'true', } }, 'art-heap-poisoning' : { @@ -231,7 +231,7 @@ target_config = { '--relocate', '--jit'], 'env' : { - 'ART_USE_READ_BARRIER' : 'false' + 'ART_USE_READ_BARRIER' : 'true' } }, |