From 33d490823384910b4291e71f0e301616d13d5ace Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 29 Jul 2023 00:57:29 +0900 Subject: [PATCH] wip --- .github/workflows/ci.yml | 4 ++-- tokio/tests/tcp_connect.rs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e491ea83a4..ddc1e6c39bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -465,8 +465,8 @@ jobs: - name: Tests run with all features (including parking_lot) run: | set -euxo pipefail - cargo nextest run -p tokio --all-features - cargo test --doc -p tokio --all-features + cargo nextest run -p tokio --all-features --no-fail-fast + # cargo test --doc -p tokio --all-features env: RUST_TEST_THREADS: 1 RUSTFLAGS: --cfg tokio_unstable -Dwarnings --cfg tokio_no_tuning_tests ${{ matrix.rustflags }} diff --git a/tokio/tests/tcp_connect.rs b/tokio/tests/tcp_connect.rs index 269ba8ef695..6a48a05627a 100644 --- a/tokio/tests/tcp_connect.rs +++ b/tokio/tests/tcp_connect.rs @@ -95,6 +95,7 @@ async fn connect_addr_ip_str_slice() { join!(server, client); } +#[cfg_attr(target_os = "android", ignore)] #[tokio::test] async fn connect_addr_host_string() { let srv = assert_ok!(TcpListener::bind("127.0.0.1:0").await);