From cea79772c55a99caeb45873122dec3c7f29f37a7 Mon Sep 17 00:00:00 2001 From: Kamil Rytarowski Date: Fri, 14 Dec 2018 16:26:09 +0000 Subject: [PATCH] Mark interception_failure_test.cc as passing for NetBSD and asan-dynamic-runtime llvm-svn: 349159 --- compiler-rt/test/asan/TestCases/interception_failure_test.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/compiler-rt/test/asan/TestCases/interception_failure_test.cc b/compiler-rt/test/asan/TestCases/interception_failure_test.cc index b4e6c58..4f6698e 100644 --- a/compiler-rt/test/asan/TestCases/interception_failure_test.cc +++ b/compiler-rt/test/asan/TestCases/interception_failure_test.cc @@ -5,12 +5,16 @@ // RUN: %clangxx_asan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s // RUN: %clangxx_asan -O2 %s -o %t && %run %t 2>&1 | FileCheck %s // RUN: %clangxx_asan -O3 %s -o %t && %run %t 2>&1 | FileCheck %s -// XFAIL: freebsd, netbsd +// XFAIL: freebsd // On Windows, defining strtoll in a static build results in linker errors, but // it works with the dynamic runtime. // XFAIL: win32-static-asan +// On NetBSD, defining strtol in a static build results in linker errors, but +// it works with the dynamic runtime. +// XFAIL: netbsd && !asan-dynamic-runtime + #include #include #include -- 2.7.4