diff options
| author | 2026-01-12 08:00:11 -0600 | |
|---|---|---|
| committer | 2026-01-12 08:00:11 -0600 | |
| commit | 0a5ff208a80934657847f190e75dcf886433778e (patch) | |
| tree | c8ebac79be4e91733818f869b96419154959ae5f | |
| parent | Turn strict linting back on. (diff) | |
Disable ipv6 for now in main test.socket-extra-ipv6
| -rw-r--r-- | test/suite-net.janet | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/suite-net.janet b/test/suite-net.janet index 1cf59fab..86433168 100644 --- a/test/suite-net.janet +++ b/test/suite-net.janet @@ -29,7 +29,7 @@ # Raw socket testing (def s (net/socket :datagram :ipv4)) (assert-no-error "multicast ipv4" (net/setsockopt s :ip-multicast-ttl 255)) -(def s6 (net/socket :datagram :ipv6)) -(assert-no-error "multicast ipv6" (net/setsockopt s6 :ipv6-multicast-hops 255)) +#(def s6 (net/socket :datagram :ipv6)) +#(assert-no-error "multicast ipv6" (net/setsockopt s6 :ipv6-multicast-hops 255)) (end-suite) |
