commit | 37efdf0033794fbcc5badde095d8935ed2415229 | [log] [tgz] |
---|---|---|
author | Alexey Samsonov <vonosmas@gmail.com> | Tue Oct 14 17:31:15 2014 +0000 |
committer | Alexey Samsonov <vonosmas@gmail.com> | Tue Oct 14 17:31:15 2014 +0000 |
tree | 21c6253c960018ea5c3d1778a7e16df736784efd | |
parent | e775f5fe7628613522fc4c11fc020d7849eb327f [diff] |
[UBSan] XFAIL test added in r219642 on Darwin llvm-svn: 219699
diff --git a/compiler-rt/test/ubsan/TestCases/TypeCheck/vptr-virtual-base.cpp b/compiler-rt/test/ubsan/TestCases/TypeCheck/vptr-virtual-base.cpp index d5130fe..5261e71 100644 --- a/compiler-rt/test/ubsan/TestCases/TypeCheck/vptr-virtual-base.cpp +++ b/compiler-rt/test/ubsan/TestCases/TypeCheck/vptr-virtual-base.cpp
@@ -1,6 +1,9 @@ // RUN: %clangxx -fsanitize=vptr -fno-sanitize-recover -g %s -O3 -o %t // RUN: not %run %t 2>&1 | FileCheck %s +// FIXME: This test produces linker errors on Darwin. +// XFAIL: darwin + struct S { virtual int f() { return 0; } }; struct T : virtual S {};