[compiler-rt] r219699 - [UBSan] XFAIL test added in r219642 on Darwin
Alexey Samsonov
vonosmas at gmail.com
Tue Oct 14 10:31:16 PDT 2014
Author: samsonov
Date: Tue Oct 14 12:31:15 2014
New Revision: 219699
URL: http://llvm.org/viewvc/llvm-project?rev=219699&view=rev
Log:
[UBSan] XFAIL test added in r219642 on Darwin
Modified:
compiler-rt/trunk/test/ubsan/TestCases/TypeCheck/vptr-virtual-base.cpp
Modified: compiler-rt/trunk/test/ubsan/TestCases/TypeCheck/vptr-virtual-base.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/ubsan/TestCases/TypeCheck/vptr-virtual-base.cpp?rev=219699&r1=219698&r2=219699&view=diff
==============================================================================
--- compiler-rt/trunk/test/ubsan/TestCases/TypeCheck/vptr-virtual-base.cpp (original)
+++ compiler-rt/trunk/test/ubsan/TestCases/TypeCheck/vptr-virtual-base.cpp Tue Oct 14 12:31:15 2014
@@ -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 {};
More information about the llvm-commits
mailing list