diff options
author | Kamil Rytarowski <n54@gmx.com> | 2018-10-09 13:32:52 +0000 |
---|---|---|
committer | Kamil Rytarowski <n54@gmx.com> | 2018-10-09 13:32:52 +0000 |
commit | 0b24a86f6322d1fa3e458b8114fa9a88f39ea360 (patch) | |
tree | f8346db1d5e4438f3290af26e3ea5f70325527ec | |
parent | c831f55fb169668e898a171e1493c3cbfa8059b5 (diff) | |
download | bcm5719-llvm-0b24a86f6322d1fa3e458b8114fa9a88f39ea360.tar.gz bcm5719-llvm-0b24a86f6322d1fa3e458b8114fa9a88f39ea360.zip |
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.
llvm-svn: 344047
-rw-r--r-- | compiler-rt/test/asan/TestCases/intercept-rethrow-exception.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/intercept-rethrow-exception.cc b/compiler-rt/test/asan/TestCases/intercept-rethrow-exception.cc index e81dc5398a9..019092a9e8b 100644 --- a/compiler-rt/test/asan/TestCases/intercept-rethrow-exception.cc +++ b/compiler-rt/test/asan/TestCases/intercept-rethrow-exception.cc @@ -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> |