summaryrefslogtreecommitdiff
path: root/test/asan
diff options
context:
space:
mode:
authorVitaly Buka <vitalybuka@google.com>2018-12-20 22:29:54 +0000
committerVitaly Buka <vitalybuka@google.com>2018-12-20 22:29:54 +0000
commitbfa1b906451a67b6233a53ef88113b0ab1ff6b65 (patch)
treef8fbc07fe9b6525559496d4900181ec64a060635 /test/asan
parent6e82742873f2e12f77c427ef3c9387e5016cdb9b (diff)
downloadcompiler-rt-bfa1b906451a67b6233a53ef88113b0ab1ff6b65.tar.gz
[asan] Disable test on powerpc64be
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@349844 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/asan')
-rw-r--r--test/asan/TestCases/Linux/odr-vtable.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/asan/TestCases/Linux/odr-vtable.cc b/test/asan/TestCases/Linux/odr-vtable.cc
index fdbab4bb1..6bcfa1f71 100644
--- a/test/asan/TestCases/Linux/odr-vtable.cc
+++ b/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();
};