diff options
| author | 2017-07-22 03:42:41 +0000 | |
|---|---|---|
| committer | 2017-07-22 03:42:41 +0000 | |
| commit | 62432ae776aa618082865b40b111dbff75aedeb6 (patch) | |
| tree | 3cb1230304f9ac8fa38b72f41fe89dc0ff7b1767 | |
| parent | 36898d089e48cd9363ca531b436ece8703e6da1c (diff) | |
| parent | cb72007afb26b2cc8ce7bf7b38dd98ca2e9bdedc (diff) | |
Merge "Disable valgrind 32-bit x86. It does not like SSE."
| -rw-r--r-- | test/testrunner/target_config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/testrunner/target_config.py b/test/testrunner/target_config.py index baf7600349..e8b6f1ce33 100644 --- a/test/testrunner/target_config.py +++ b/test/testrunner/target_config.py @@ -303,7 +303,8 @@ target_config = { } }, 'art-gtest-valgrind32': { - 'make' : 'valgrind-test-art-host32', + # Disabled: x86 valgrind does not understand SSE4.x + # 'make' : 'valgrind-test-art-host32', 'env': { 'ART_USE_READ_BARRIER' : 'false' } |