Merge pull request #4928 from kumpera/ptr_to_struct_intrinsic
[mono.git] / mcs / class / Mono.Posix / Test / Mono.Unix.Native / StdlibTest.cs
index 1b7b77d5aca4704f5ff51304098543516268bfb2..e429af7f726cc3ade48060848ba35b91604988a5 100644 (file)
@@ -17,7 +17,7 @@ using Mono.Unix.Native;
 
 namespace MonoTests.Mono.Unix.Native {
 
-       [TestFixture]
+       [TestFixture, Category ("NotOnWindows")]
        public class StdlibTest
        {
                private class SignalTest {
@@ -56,7 +56,7 @@ namespace MonoTests.Mono.Unix.Native {
                        Assert.IsFalse (NativeConvert.ToSignum (st.signalReceived) == Signum.SIGURG,
                                        "#IH: Signal Handler invoked when it should have been removed!");
                }
-
+#if !NETCOREAPP2_0
                [Test]
                // MSVCRT.DLL doesn't export snprintf(3).
                [Category ("NotDotNet")]
@@ -92,6 +92,7 @@ namespace MonoTests.Mono.Unix.Native {
                        Assert.AreEqual (s.ToString(), expected,
                                        "#SNPF: printf of many builtin types failed");
                }
+#endif
        }
 }