[compiler-rt] r349159 - Mark interception_failure_test.cc as passing for NetBSD and asan-dynamic-runtime

Kamil Rytarowski via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 14 08:26:09 PST 2018


Author: kamil
Date: Fri Dec 14 08:26:09 2018
New Revision: 349159

URL: http://llvm.org/viewvc/llvm-project?rev=349159&view=rev
Log:
Mark interception_failure_test.cc as passing for NetBSD and asan-dynamic-runtime

Modified:
    compiler-rt/trunk/test/asan/TestCases/interception_failure_test.cc

Modified: compiler-rt/trunk/test/asan/TestCases/interception_failure_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/interception_failure_test.cc?rev=349159&r1=349158&r2=349159&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/interception_failure_test.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/interception_failure_test.cc Fri Dec 14 08:26:09 2018
@@ -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 <stdlib.h>
 #include <stdio.h>
 #include <string.h>




More information about the llvm-commits mailing list