mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +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())
|
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() {
|
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")
|
addr1, err := net.ResolveUDPAddr("udp", "localhost:0")
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
conn1, err := net.ListenUDP("udp", addr1)
|
conn1, err := net.ListenUDP("udp", addr1)
|
||||||
|
@ -209,5 +208,6 @@ var _ = Describe("Multiplexing", func() {
|
||||||
Eventually(done1, timeout).Should(BeClosed())
|
Eventually(done1, timeout).Should(BeClosed())
|
||||||
Eventually(done2, timeout).Should(BeClosed())
|
Eventually(done2, timeout).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue