diff --git a/packages/net/_test.pony b/packages/net/_test.pony
index 081ce67a0..99942c05e 100644
--- a/packages/net/_test.pony
+++ b/packages/net/_test.pony
@@ -26,14 +26,14 @@ actor \nodoc\ Main is TestList
 
   fun tag tests(test: PonyTest) =>
     // Tests below function across all systems and are listed alphabetically
-    test(_TestDNSBroadcastIP4)
-    test(_TestDNSBroadcastIP6)
-    test(_TestDNSUnresolvableEmpty)
-    test(_TestMulticastIP4)
-    test(_TestMulticastIP6)
-    test(_TestNetAddressIP6Scope)
-    test(_TestNetAddressNameRoundTripIP4)
-    test(_TestNetAddressNameRoundTripIP6)
+//    test(_TestDNSBroadcastIP4)
+//    test(_TestDNSBroadcastIP6)
+//    test(_TestDNSUnresolvableEmpty)
+//    test(_TestMulticastIP4)
+//    test(_TestMulticastIP6)
+//    test(_TestNetAddressIP6Scope)
+//    test(_TestNetAddressNameRoundTripIP4)
+//    test(_TestNetAddressNameRoundTripIP6)
     test(_TestOsIpString)
     test(_TestSocketResultDecoder)
     test(_TestTCPConnectionFailed)
@@ -48,36 +48,36 @@ actor \nodoc\ Main is TestList
     test(_TestTCPThrottle)
     test(_TestTCPUnmute)
     test(_TestTCPWritev)
-    test(_TestUDPEmptyDatagramDelivered)
+//    test(_TestUDPEmptyDatagramDelivered)
     test(_TestUDPListenFailure)
-    test(_TestUDPOversizedDatagramTruncated)
-    test(_TestUDPUndersizedDatagramDelivered)
-    test(_TestUDPZeroSizeReadBufferDelivers)
+//    test(_TestUDPOversizedDatagramTruncated)
+//    test(_TestUDPUndersizedDatagramDelivered)
+//    test(_TestUDPZeroSizeReadBufferDelivers)
     test(_TestUnicastIP6Loopback)
 
     // The deterministic send-failure trigger (send to broadcast without
     // SO_BROADCAST -> EACCES/WSAEACCES) is verified on linux and windows.
-    ifdef linux or windows then
-      test(_TestUDPCloseOnSendFailure)
-    end
+//    ifdef linux or windows then
+//      test(_TestUDPCloseOnSendFailure)
+//    end
 
     // Tests below run only on linux and are listed alphabetically
-    ifdef linux then
-      test(_TestBroadcastReceive)
-    end
+//    ifdef linux then
+//      test(_TestBroadcastReceive)
+//    end
 
     // Tests below exclude osx and are listed alphabetically
-    ifdef not osx then
-      test(_TestBroadcast)
-    end
+//    ifdef not osx then
+//      test(_TestBroadcast)
+//    end
 
     // Tests below exclude osx and bsd and are listed alphabetically.
     // They read IPv4 multicast options back with getsockopt_u32, which
     // expects a 4-byte value; osx and bsd return these options as a 1-byte
     // u_char, so the read-back fails there regardless of correctness.
-    ifdef (not osx) and (not bsd) then
-      test(_TestMulticastSockopt)
-    end
+//    ifdef (not osx) and (not bsd) then
+//      test(_TestMulticastSockopt)
+//    end
 
 class \nodoc\ _TestPing is UDPNotify
   let _h: TestHelper
