-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Spurious test failure: net::tcp::tests::connect_timeout_unroutable #44645
Comments
tmerr
added a commit
to tmerr/rust
that referenced
this issue
Sep 17, 2017
net::tcp::tests::connect_timeout_unroutable fails when the network is unreachable, like on a laptop disconnected from wifi. Check for this error and allow the test to pass. Closes rust-lang#44645
TimNN
added a commit
to TimNN/rust
that referenced
this issue
Sep 17, 2017
Ensure tcp test case passes when disconnected from network net::tcp::tests::connect_timeout_unroutable fails when the network is unreachable, like on a laptop disconnected from wifi. Check for this error and allow the test to pass. Closes rust-lang#44645
TimNN
added a commit
to TimNN/rust
that referenced
this issue
Sep 17, 2017
Ensure tcp test case passes when disconnected from network net::tcp::tests::connect_timeout_unroutable fails when the network is unreachable, like on a laptop disconnected from wifi. Check for this error and allow the test to pass. Closes rust-lang#44645
TimNN
added a commit
to TimNN/rust
that referenced
this issue
Sep 17, 2017
Ensure tcp test case passes when disconnected from network net::tcp::tests::connect_timeout_unroutable fails when the network is unreachable, like on a laptop disconnected from wifi. Check for this error and allow the test to pass. Closes rust-lang#44645
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What I tried:
./x.py test src/libstd
on a laptop disconnected from wifi, running linuxWhat I expected: tests pass
What I got: tests pass except
net::tcp::tets::connect_timeout_unroutable
.Underlying error:
Error { repr: Os { code: 101, message: "Network is unreachable" } }
.Should the test suite be assuming we are on some network?
The text was updated successfully, but these errors were encountered: