From ea2bbc1f34240764bf9683c27fab632a9a103308 Mon Sep 17 00:00:00 2001 From: Kamil Rytarowski Date: Mon, 22 Feb 2016 01:01:04 +0100 Subject: [PATCH] Temporarily disable paltest_pal_sxs_test1 on NetBSD This test has been also disabled on FreeBSD as hardware exceptions always seem to abort on NetBSD as well. Related issues: dotnet/coreclr#2090 dotnet/coreclr#3287 --- .../tests/palsuite/exception_handling/pal_sxs/test1/exceptionsxs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pal/tests/palsuite/exception_handling/pal_sxs/test1/exceptionsxs.cpp b/src/pal/tests/palsuite/exception_handling/pal_sxs/test1/exceptionsxs.cpp index b78cfa8..3a4aa55 100644 --- a/src/pal/tests/palsuite/exception_handling/pal_sxs/test1/exceptionsxs.cpp +++ b/src/pal/tests/palsuite/exception_handling/pal_sxs/test1/exceptionsxs.cpp @@ -20,7 +20,7 @@ extern "C" int DllTest2(); int main(int argc, char *argv[]) { -#ifndef __FreeBSD__ +#if !defined(__FreeBSD__) && !defined(__NetBSD__) if (0 != InitializeDllTest1()) { return 1; -- 2.7.4