diff options
author | 2017-07-21 16:12:47 -0700 | |
---|---|---|
committer | 2017-07-21 16:20:03 -0700 | |
commit | cb72007afb26b2cc8ce7bf7b38dd98ca2e9bdedc (patch) | |
tree | 82b36cd618bd636cf13ffdc7ef9e9e639df42513 | |
parent | 84b65e977302e1cf16d188636c22c164c7793554 (diff) |
Disable valgrind 32-bit x86. It does not like SSE.
Rationale:
We got a buildbot failure in ART on host-x86-valgrind after
enabling sse4.2 for hosts (which causes clang to use SSE
that is not recognized by valgrind32).
Bug: 63585550
Test: ./run_build_test_target.py art-gtest-valgrind32 completed.
Change-Id: Ic7ba4d1fd028ef39ddb002fcaa1b023595117cd3
-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' } |