mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
change how the multiplex test is skipped on Linux (#3817)
This commit is contained in:
parent
5aa2beb706
commit
22ca1fb8a5
1 changed files with 49 additions and 49 deletions
|
@ -156,10 +156,9 @@ var _ = Describe("Multiplexing", func() {
|
|||
Eventually(done, timeout).Should(BeClosed())
|
||||
})
|
||||
|
||||
// This test would require setting of iptables rules, see https://stackoverflow.com/questions/23859164/linux-udp-socket-sendto-operation-not-permitted.
|
||||
if runtime.GOOS != "linux" {
|
||||
It("runs a server and client on the same conn", func() {
|
||||
if runtime.GOOS == "linux" {
|
||||
Skip("This test would require setting of iptables rules, see https://stackoverflow.com/questions/23859164/linux-udp-socket-sendto-operation-not-permitted.")
|
||||
}
|
||||
addr1, err := net.ResolveUDPAddr("udp", "localhost:0")
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
conn1, err := net.ListenUDP("udp", addr1)
|
||||
|
@ -209,5 +208,6 @@ var _ = Describe("Multiplexing", func() {
|
|||
Eventually(done1, timeout).Should(BeClosed())
|
||||
Eventually(done2, timeout).Should(BeClosed())
|
||||
})
|
||||
}
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue