mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
47 lines
2.1 KiB
C++
47 lines
2.1 KiB
C++
--- net/socket/udp_socket_unittest.cc.orig 2024-06-18 21:43:37 UTC
|
|
+++ net/socket/udp_socket_unittest.cc
|
|
@@ -358,7 +358,7 @@ TEST_F(UDPSocketTest, PartialRecv) {
|
|
EXPECT_EQ(second_packet, received);
|
|
}
|
|
|
|
-#if BUILDFLAG(IS_APPLE) || BUILDFLAG(IS_ANDROID)
|
|
+#if BUILDFLAG(IS_APPLE) || BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_BSD)
|
|
// - MacOS: requires root permissions on OSX 10.7+.
|
|
// - Android: devices attached to testbots don't have default network, so
|
|
// broadcasting to 255.255.255.255 returns error -109 (Address not reachable).
|
|
@@ -669,7 +669,7 @@ TEST_F(UDPSocketTest, ClientSetDoNotFragment) {
|
|
EXPECT_THAT(rv, IsOk());
|
|
|
|
rv = client.SetDoNotFragment();
|
|
-#if BUILDFLAG(IS_IOS) || BUILDFLAG(IS_FUCHSIA)
|
|
+#if BUILDFLAG(IS_IOS) || BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_BSD)
|
|
// TODO(crbug.com/42050633): IP_MTU_DISCOVER is not implemented on Fuchsia.
|
|
EXPECT_THAT(rv, IsError(ERR_NOT_IMPLEMENTED));
|
|
#elif BUILDFLAG(IS_MAC)
|
|
@@ -697,7 +697,7 @@ TEST_F(UDPSocketTest, ServerSetDoNotFragment) {
|
|
EXPECT_THAT(rv, IsOk());
|
|
|
|
rv = server.SetDoNotFragment();
|
|
-#if BUILDFLAG(IS_IOS) || BUILDFLAG(IS_FUCHSIA)
|
|
+#if BUILDFLAG(IS_IOS) || BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_BSD)
|
|
// TODO(crbug.com/42050633): IP_MTU_DISCOVER is not implemented on Fuchsia.
|
|
EXPECT_THAT(rv, IsError(ERR_NOT_IMPLEMENTED));
|
|
#elif BUILDFLAG(IS_MAC)
|
|
@@ -762,7 +762,7 @@ TEST_F(UDPSocketTest, JoinMulticastGroup) {
|
|
|
|
// TODO(crbug.com/40620614): failing on device on iOS 12.2.
|
|
// TODO(crbug.com/40189274): flaky on Mac 11.
|
|
-#if BUILDFLAG(IS_IOS) || BUILDFLAG(IS_MAC)
|
|
+#if BUILDFLAG(IS_IOS) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_BSD)
|
|
#define MAYBE_SharedMulticastAddress DISABLED_SharedMulticastAddress
|
|
#else
|
|
#define MAYBE_SharedMulticastAddress SharedMulticastAddress
|
|
@@ -816,7 +816,7 @@ TEST_F(UDPSocketTest, MAYBE_SharedMulticastAddress) {
|
|
NetLogSource());
|
|
ASSERT_THAT(client_socket.Connect(send_address), IsOk());
|
|
|
|
-#if !BUILDFLAG(IS_CHROMEOS_ASH)
|
|
+#if !BUILDFLAG(IS_CHROMEOS_ASH) && !BUILDFLAG(IS_BSD)
|
|
// Send a message via the multicast group. That message is expected be be
|
|
// received by both receving sockets.
|
|
//
|