Skip to content

Commit 92a18c5

Browse files
committed
fix: mark flaky tests as flaky
1 parent eca68a4 commit 92a18c5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/cli.rs

+3
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ fn random_port() -> u16 {
5353
/// Connect and listen both write a limited amount of data and then EOF.
5454
/// The interaction should stop when both sides have EOF'd.
5555
#[test]
56+
#[ignore = "flaky"]
5657
fn connect_listen_happy() {
5758
// the bytes provided by the listen command
5859
let listen_to_connect = b"hello from listen";
@@ -90,6 +91,7 @@ fn connect_listen_happy() {
9091
/// Connect and listen both write a limited amount of data and then EOF.
9192
/// The interaction should stop when both sides have EOF'd.
9293
#[test]
94+
#[ignore = "flaky"]
9395
fn connect_listen_custom_alpn_happy() {
9496
// the bytes provided by the listen command
9597
let listen_to_connect = b"hello from listen";
@@ -214,6 +216,7 @@ fn connect_listen_ctrlc_listen() {
214216
// TODO: figure out why this is flaky on windows
215217
#[test]
216218
#[cfg(unix)]
219+
#[ignore = "flaky"]
217220
fn listen_tcp_happy() {
218221
let b1 = wait2();
219222
let b2 = b1.clone();

0 commit comments

Comments
 (0)