x/net/quic: tests failing on Plan 9 builders because of unimplemented UDP features #68288
Labels
FixPending
Issues that have a fix which has not yet been reviewed or submitted.
NeedsFix
The path to resolution is known, but the work has not been done.
OS-Plan9
Testing
An issue that has been verified to require only test changes, not just a test failure.
Milestone
Go version
gotip
Output of
go env
in your module/workspace:What did you do?
In
x/net
, Plan 9 arm builder attempted to rungo test -json -short ./...
What did you see happen?
Several tests always fail, some to the extent of nil-dereference panics.
What did you expect to see?
Expected the failing tests to be skipped on Plan 9, because they depend on the unimplemented
ReadMsgUDP
function.I think it might be possible to implement the missing UDP functionality, but meanwhile these tests should really be skipped. Also it might be good to avoid the nil dereference panic by checking for reading from a closed
test.dgramc
channel in places like this:The text was updated successfully, but these errors were encountered: