[compiler-rt] r344047 - Mark intercept-rethrow-exception.cc as XFAIL on NetBSD
Kamil Rytarowski via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 9 06:32:52 PDT 2018
Author: kamil
Date: Tue Oct 9 06:32:52 2018
New Revision: 344047
URL: http://llvm.org/viewvc/llvm-project?rev=344047&view=rev
Log:
Mark intercept-rethrow-exception.cc as XFAIL on NetBSD
This is an ASan test for functionality that has not been
ported to NetBSD so far.
Modified:
compiler-rt/trunk/test/asan/TestCases/intercept-rethrow-exception.cc
Modified: compiler-rt/trunk/test/asan/TestCases/intercept-rethrow-exception.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/intercept-rethrow-exception.cc?rev=344047&r1=344046&r2=344047&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/intercept-rethrow-exception.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/intercept-rethrow-exception.cc Tue Oct 9 06:32:52 2018
@@ -4,6 +4,10 @@
// RUN: %clangxx_asan -fexceptions -O0 %s -o %t
// RUN: %run %t
+// The current implementation of this functionality requires special
+// combination of libraries that are not used by default on NetBSD
+// XFAIL: netbsd
+
#include <assert.h>
#include <exception>
#include <sanitizer/asan_interface.h>
More information about the llvm-commits
mailing list