diff options
author | Vitaly Buka <vitalybuka@google.com> | 2018-12-20 22:29:54 +0000 |
---|---|---|
committer | Vitaly Buka <vitalybuka@google.com> | 2018-12-20 22:29:54 +0000 |
commit | 5bcd4e8876cad1b85ea067e856daf487d38c486c (patch) | |
tree | b24d238f6a8415201ed99d9394d33773a5e02214 | |
parent | 46debda1c7fbbdd2b0b436b42d237c00766faab3 (diff) | |
download | bcm5719-llvm-5bcd4e8876cad1b85ea067e856daf487d38c486c.tar.gz bcm5719-llvm-5bcd4e8876cad1b85ea067e856daf487d38c486c.zip |
[asan] Disable test on powerpc64be
llvm-svn: 349844
-rw-r--r-- | compiler-rt/test/asan/TestCases/Linux/odr-vtable.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/Linux/odr-vtable.cc b/compiler-rt/test/asan/TestCases/Linux/odr-vtable.cc index fdbab4bb1fd..6bcfa1f711d 100644 --- a/compiler-rt/test/asan/TestCases/Linux/odr-vtable.cc +++ b/compiler-rt/test/asan/TestCases/Linux/odr-vtable.cc @@ -3,6 +3,9 @@ // RUN: %clangxx_asan -fno-rtti %s %ld_flags_rpath_exe1 %ld_flags_rpath_exe2 -o %t // RUN: %env_asan_opts=fast_unwind_on_malloc=0:detect_odr_violation=2 not %run %t 2>&1 | FileCheck %s +// FIXME: Somehow does not detect ODR on powerpc64be +// XFAIL: powerpc64 + struct XYZ { virtual void foo(); }; |