We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adf46bb commit c6685ceCopy full SHA for c6685ce
.cirrus.yml
@@ -58,4 +58,5 @@ openbsd_task:
58
# OpenBSD is tier 3 target, so install rust from package manager instead of rustup
59
- pkg_add git rust
60
test_script:
61
- - cargo test
+ # `test` fails because our tests have an MSRV of 1.70.
62
+ - cargo build
tests/issue_182.rs
@@ -12,6 +12,12 @@ fn networking_initialized() {
12
return;
13
}
14
};
15
+
16
+ // Make sure we can access the host normally.
17
+ if TcpStream::connect(address).is_err() {
18
+ return;
19
+ }
20
21
async_io::block_on(async move {
22
let _ = Async::<TcpStream>::connect(address).await.unwrap();
23
});
0 commit comments