[compiler-rt] r248835 - [msan] Disable allocator_mapping test on mips64 and aarch64.
Evgeniy Stepanov via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 29 15:24:58 PDT 2015
Author: eugenis
Date: Tue Sep 29 17:24:57 2015
New Revision: 248835
URL: http://llvm.org/viewvc/llvm-project?rev=248835&view=rev
Log:
[msan] Disable allocator_mapping test on mips64 and aarch64.
Modified:
compiler-rt/trunk/test/msan/allocator_mapping.cc
Modified: compiler-rt/trunk/test/msan/allocator_mapping.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/allocator_mapping.cc?rev=248835&r1=248834&r2=248835&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/allocator_mapping.cc (original)
+++ compiler-rt/trunk/test/msan/allocator_mapping.cc Tue Sep 29 17:24:57 2015
@@ -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>
More information about the llvm-commits
mailing list