-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sockets test fail on FreeBSD 12 #41942
Labels
Comments
ararslan
added
bug
Indicates an unexpected problem or unintended behavior
system:freebsd
Affects only FreeBSD
labels
Aug 20, 2021
Looking closer at the documentation for FreeBSD |
So would the issue be with how libuv is interacting with the OS's pipes or is it on the Julia side? (I guess it could be both) |
This was referenced Aug 24, 2021
vtjnash
added a commit
that referenced
this issue
Aug 25, 2021
vtjnash
added a commit
that referenced
this issue
Aug 26, 2021
LilithHafner
pushed a commit
to LilithHafner/julia
that referenced
this issue
Feb 22, 2022
A stream can continue to be read after closewrite, but cannot continue to be written to after seeing EOF. Replaces JuliaLang#42004 Replaces JuliaLang#41983 Fixes JuliaLang#41942 Refs JuliaLang#40783
LilithHafner
pushed a commit
to LilithHafner/julia
that referenced
this issue
Mar 8, 2022
A stream can continue to be read after closewrite, but cannot continue to be written to after seeing EOF. Replaces JuliaLang#42004 Replaces JuliaLang#41983 Fixes JuliaLang#41942 Refs JuliaLang#40783
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
It seems #40783 broke one of the Sockets tests on FreeBSD 12:
julia/stdlib/Sockets/test/runtests.jl
Line 524 in 0224c42
Following along the steps taken in the tests,
you'll get
true
from the final EOF check on any platform. However,p.out.status
isBase.StatusEOF
on FreeBSD with andBase.StatusClosed
on macOS. Prior to #40783,p.out.status
wasBase.StatusClosed
on both platforms.The text was updated successfully, but these errors were encountered: