diff options
| author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2015-09-29 22:24:57 +0000 |
|---|---|---|
| committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2015-09-29 22:24:57 +0000 |
| commit | 01e4c87a5aac172ebe297ca78948f28e4b350e4a (patch) | |
| tree | e910b024561aba28ac9f303a32d34d648f14525d | |
| parent | 2d3754d82ecd05b8f1c15ffb3c63915ceac452e7 (diff) | |
| download | bcm5719-llvm-01e4c87a5aac172ebe297ca78948f28e4b350e4a.tar.gz bcm5719-llvm-01e4c87a5aac172ebe297ca78948f28e4b350e4a.zip | |
[msan] Disable allocator_mapping test on mips64 and aarch64.
llvm-svn: 248835
| -rw-r--r-- | compiler-rt/test/msan/allocator_mapping.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler-rt/test/msan/allocator_mapping.cc b/compiler-rt/test/msan/allocator_mapping.cc index 954b8dfef3b..f47d9a63e09 100644 --- a/compiler-rt/test/msan/allocator_mapping.cc +++ b/compiler-rt/test/msan/allocator_mapping.cc @@ -4,6 +4,11 @@ // // RUN: %clangxx_msan -O0 %s -o %t_1 // RUN: %clangxx_msan -O0 -DHEAP_ADDRESS=$(%run %t_1) %s -o %t_2 && %run %t_2 +// +// This test only makes sense for the 64-bit allocator. The 32-bit allocator +// does not have a fixed mapping. Exclude platforms that use the 32-bit +// allocator. +// UNSUPPORTED: mips64,aarch64 #include <assert.h> #include <stdio.h> |

