diff options
6 files changed, 9 insertions, 1 deletions
diff --git a/compiler-rt/test/asan/TestCases/Posix/coverage-reset.cc b/compiler-rt/test/asan/TestCases/Posix/coverage-reset.cc index 6d76a309b76..152be2ab3a2 100644 --- a/compiler-rt/test/asan/TestCases/Posix/coverage-reset.cc +++ b/compiler-rt/test/asan/TestCases/Posix/coverage-reset.cc @@ -5,6 +5,8 @@ // // UNSUPPORTED: ios +// XFAIL: i386-netbsd + #include <stdio.h> #include <sanitizer/coverage_interface.h> diff --git a/compiler-rt/test/asan/TestCases/Posix/coverage.cc b/compiler-rt/test/asan/TestCases/Posix/coverage.cc index 12a88402eb5..9dbd72eabd2 100644 --- a/compiler-rt/test/asan/TestCases/Posix/coverage.cc +++ b/compiler-rt/test/asan/TestCases/Posix/coverage.cc @@ -18,6 +18,7 @@ // // https://code.google.com/p/address-sanitizer/issues/detail?id=263 // XFAIL: android +// XFAIL: i386-netbsd // UNSUPPORTED: ios #include <assert.h> diff --git a/compiler-rt/test/asan/TestCases/Posix/dlclose-test.cc b/compiler-rt/test/asan/TestCases/Posix/dlclose-test.cc index 0aafa3e79f6..160c1c940e6 100644 --- a/compiler-rt/test/asan/TestCases/Posix/dlclose-test.cc +++ b/compiler-rt/test/asan/TestCases/Posix/dlclose-test.cc @@ -23,6 +23,8 @@ // RUN: %clangxx_asan -O3 -DSHARED_LIB %s -fPIC -shared -o %t-so.so // RUN: %clangxx_asan -O3 %s %libdl -o %t && %run %t 2>&1 | FileCheck %s +// XFAIL: i386-netbsd + #if !defined(SHARED_LIB) #include <assert.h> #include <dlfcn.h> diff --git a/compiler-rt/test/asan/TestCases/Posix/interception-in-shared-lib-test.cc b/compiler-rt/test/asan/TestCases/Posix/interception-in-shared-lib-test.cc index a7d2bfb9b43..b31b035f9e4 100644 --- a/compiler-rt/test/asan/TestCases/Posix/interception-in-shared-lib-test.cc +++ b/compiler-rt/test/asan/TestCases/Posix/interception-in-shared-lib-test.cc @@ -5,6 +5,8 @@ // RUN: %clangxx_asan -O0 %s -o %t %ld_flags_rpath_exe && \ // RUN: not %run %t 2>&1 | FileCheck %s +// XFAIL: i386-netbsd + #include <stdio.h> #include <string.h> diff --git a/compiler-rt/test/asan/TestCases/Posix/stack-use-after-return.cc b/compiler-rt/test/asan/TestCases/Posix/stack-use-after-return.cc index 528fa94b072..02588d708e2 100644 --- a/compiler-rt/test/asan/TestCases/Posix/stack-use-after-return.cc +++ b/compiler-rt/test/asan/TestCases/Posix/stack-use-after-return.cc @@ -17,7 +17,7 @@ // This test runs out of stack on AArch64. // UNSUPPORTED: aarch64 // stack size log lower than expected -// XFAIL: freebsd +// XFAIL: freebsd,netbsd // FIXME: Fix this test for dynamic runtime on arm linux. // UNSUPPORTED: (arm-linux || armhf-linux) && asan-dynamic-runtime diff --git a/compiler-rt/test/asan/TestCases/Posix/tsd_dtor_leak.cc b/compiler-rt/test/asan/TestCases/Posix/tsd_dtor_leak.cc index 9e71ff61cf0..860f3459e5a 100644 --- a/compiler-rt/test/asan/TestCases/Posix/tsd_dtor_leak.cc +++ b/compiler-rt/test/asan/TestCases/Posix/tsd_dtor_leak.cc @@ -2,6 +2,7 @@ // https://code.google.com/p/address-sanitizer/issues/detail?id=233 // RUN: %clangxx_asan -O1 %s -pthread -o %t // RUN: %env_asan_opts=quarantine_size_mb=0 %run %t +// XFAIL: x86_64-netbsd #include <pthread.h> #include <stdio.h> #include <stdlib.h> |