We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ed7b23 commit 7e61a2eCopy full SHA for 7e61a2e
testing/int/network.cpp
@@ -236,7 +236,11 @@ TEST_CASE("ipaddresses", "[ipv6][network][basic]") {
236
TEST_CASE("reuseport", "[network][basic][!mayfail]") {
237
// Linux: sudo ip link set lo multicast on; sudo ip mroute show table all
238
239
+#if __APPLE__
240
+ auto addrstr = GENERATE((const char *)"224.0.0.1", "255.255.255.255");
241
+#else
242
auto addrstr = GENERATE((const char *)"224.0.0.1", "255.255.255.255", "ff03::1");
243
+#endif
244
SECTION(addrstr) {
245
const uint16_t test_port = port++;
246
INFO("Test port " + std::to_string(test_port));
0 commit comments