Skip to content

Commit

Permalink
Update CI config
Browse files Browse the repository at this point in the history
- Remove duplicate target from cross-test
- Remove needless --test-threads=1 (already specified by RUST_TEST_THREADS=1)
- Remove --cfg tokio_no_ipv6 as setup-cross-toolchain-action supports it
  • Loading branch information
taiki-e committed Jul 28, 2023
1 parent efe3ab6 commit a6c92c0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 16 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -439,9 +439,6 @@ jobs:
- target: armv7-unknown-linux-gnueabihf
- target: aarch64-unknown-linux-gnu
rustflags: --cfg tokio_taskdump

# Run a platform without AtomicU64 and no const Mutex::new
- target: armv5te-unknown-linux-gnueabi
steps:
- uses: actions/checkout@v3
- name: Install Rust stable
Expand All @@ -464,10 +461,10 @@ jobs:
run: |
set -euxo pipefail
cargo nextest run -p tokio --all-features --target ${{ matrix.target }}
cargo test --doc -p tokio --all-features --target ${{ matrix.target }} -- --test-threads 1
cargo test --doc -p tokio --all-features --target ${{ matrix.target }}
env:
RUST_TEST_THREADS: 1
RUSTFLAGS: --cfg tokio_unstable -Dwarnings --cfg tokio_no_ipv6 --cfg tokio_no_tuning_tests ${{ matrix.rustflags }}
RUSTFLAGS: --cfg tokio_unstable -Dwarnings --cfg tokio_no_tuning_tests ${{ matrix.rustflags }}

cross-test-without-parking_lot:
needs: basics
Expand All @@ -481,9 +478,6 @@ jobs:
- target: armv7-unknown-linux-gnueabihf
- target: aarch64-unknown-linux-gnu
rustflags: --cfg tokio_taskdump

# Run a platform without AtomicU64 and no const Mutex::new
- target: armv5te-unknown-linux-gnueabi
steps:
- uses: actions/checkout@v3
- name: Install Rust stable
Expand All @@ -510,10 +504,10 @@ jobs:
run: |
set -euxo pipefail
cargo nextest run -p tokio --features full,test-util --target ${{ matrix.target }}
cargo test --doc -p tokio --features full,test-util --target ${{ matrix.target }} -- --test-threads 1
cargo test --doc -p tokio --features full,test-util --target ${{ matrix.target }}
env:
RUST_TEST_THREADS: 1
RUSTFLAGS: --cfg tokio_unstable -Dwarnings --cfg tokio_no_ipv6 --cfg tokio_no_parking_lot --cfg tokio_no_tuning_tests ${{ matrix.rustflags }}
RUSTFLAGS: --cfg tokio_unstable -Dwarnings --cfg tokio_no_parking_lot --cfg tokio_no_tuning_tests ${{ matrix.rustflags }}

# See https://github.com/tokio-rs/tokio/issues/5187
no-atomic-u64-test:
Expand Down Expand Up @@ -541,7 +535,7 @@ jobs:
- name: test tokio --all-features
run: |
cargo nextest run -Zbuild-std --target target-specs/i686-unknown-linux-gnu.json -p tokio --all-features
cargo test --doc -Zbuild-std --target target-specs/i686-unknown-linux-gnu.json -p tokio --all-features -- --test-threads 1
cargo test --doc -Zbuild-std --target target-specs/i686-unknown-linux-gnu.json -p tokio --all-features
env:
RUST_TEST_THREADS: 1
RUSTFLAGS: --cfg tokio_unstable --cfg tokio_taskdump -Dwarnings --cfg tokio_no_atomic_u64 --cfg tokio_no_tuning_tests
Expand All @@ -566,7 +560,7 @@ jobs:

# https://github.com/tokio-rs/tokio/pull/5356
# https://github.com/tokio-rs/tokio/issues/5373
- name: Check with const_mutex_new
- name: Check
run: cargo hack check -p tokio --feature-powerset --depth 2 --keep-going
env:
RUSTFLAGS: --cfg tokio_unstable --cfg tokio_taskdump -Dwarnings --cfg tokio_no_atomic_u64
Expand Down
3 changes: 1 addition & 2 deletions tokio/src/loom/std/parking_lot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ impl<T> Mutex<T> {
}

#[inline]
#[cfg(all(feature = "parking_lot", not(all(loom, test))))]
#[cfg_attr(docsrs, doc(cfg(all(feature = "parking_lot",))))]
#[cfg(not(all(loom, test)))]
pub(crate) const fn const_new(t: T) -> Mutex<T> {
Mutex(PhantomData, parking_lot::const_mutex(t))
}
Expand Down
1 change: 0 additions & 1 deletion tokio/tests/tcp_connect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ async fn connect_v4() {
}

#[tokio::test]
#[cfg(not(tokio_no_ipv6))]
async fn connect_v6() {
let srv = assert_ok!(TcpListener::bind("[::1]:0").await);
let addr = assert_ok!(srv.local_addr());
Expand Down
1 change: 0 additions & 1 deletion tokio/tests/tcp_socket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ async fn basic_usage_v4() {
}

#[tokio::test]
#[cfg(not(tokio_no_ipv6))]
async fn basic_usage_v6() {
// Create server
let addr = assert_ok!("[::1]:0".parse());
Expand Down

0 comments on commit a6c92c0

Please sign in to comment.