Mark interception_failure_test.cc as passing for NetBSD and asan-dynamic-runtime
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 <stdlib.h>
 #include <stdio.h>
 #include <string.h>