[compiler-rt] r216263 - [ubsan] Do not run Function/function.cpp on Darwin where -fsanitize=function is not supported.

Alexander Potapenko glider at google.com
Fri Aug 22 04:09:10 PDT 2014


Author: glider
Date: Fri Aug 22 06:09:10 2014
New Revision: 216263

URL: http://llvm.org/viewvc/llvm-project?rev=216263&view=rev
Log:
[ubsan] Do not run Function/function.cpp on Darwin where -fsanitize=function is not supported.

Modified:
    compiler-rt/trunk/test/ubsan/TestCases/TypeCheck/Function/function.cpp

Modified: compiler-rt/trunk/test/ubsan/TestCases/TypeCheck/Function/function.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/ubsan/TestCases/TypeCheck/Function/function.cpp?rev=216263&r1=216262&r2=216263&view=diff
==============================================================================
--- compiler-rt/trunk/test/ubsan/TestCases/TypeCheck/Function/function.cpp (original)
+++ compiler-rt/trunk/test/ubsan/TestCases/TypeCheck/Function/function.cpp Fri Aug 22 06:09:10 2014
@@ -3,6 +3,9 @@
 // Verify that we can disable symbolization if needed:
 // RUN: UBSAN_OPTIONS=symbolize=0 ASAN_OPTIONS=symbolize=0 %run %t 2>&1 | FileCheck %s --check-prefix=NOSYM
 
+// -fsanitize=function is unsupported on Darwin yet.
+// XFAIL: darwin
+
 #include <stdint.h>
 
 void f() {}





More information about the llvm-commits mailing list