diff --git a/.github/workflows/cov.yml b/.github/workflows/cov.yml index 556a5b58..10a7e518 100644 --- a/.github/workflows/cov.yml +++ b/.github/workflows/cov.yml @@ -26,18 +26,18 @@ jobs: - name: Clean coverage results run: cargo llvm-cov clean --workspace - - name: Code coverage (tokio) - run: cargo llvm-cov --no-report --all --no-default-features --features="ntex/tokio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws" - - - name: Code coverage (compio) - run: cargo llvm-cov --no-report --all --no-default-features --features="ntex/compio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws" - - name: Code coverage (neon) run: cargo llvm-cov --no-report --all --no-default-features --features="ntex/neon,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws" - name: Code coverage (neon-uring) run: cargo llvm-cov --no-report --all --no-default-features --features="ntex/neon-uring,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws" + - name: Code coverage (tokio) + run: cargo llvm-cov --no-report --all --no-default-features --features="ntex/tokio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws" + + - name: Code coverage (compio) + run: cargo llvm-cov --no-report --all --no-default-features --features="ntex/compio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws" + - name: Generate coverage report run: cargo llvm-cov report --lcov --output-path lcov.info --ignore-filename-regex="ntex-compio|ntex-tokio" diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 2e31f873..5b8692f8 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -44,16 +44,6 @@ jobs: path: ~/.cargo/git key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }} - - name: Run tests (tokio) - timeout-minutes: 40 - run: | - cargo test --all --no-fail-fast --no-default-features --features="ntex/tokio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws" - - - name: Run tests (compio) - timeout-minutes: 40 - run: | - cargo test --all --no-default-features --features="ntex/compio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws" - - name: Run tests (neon) timeout-minutes: 40 run: | @@ -64,6 +54,16 @@ jobs: run: | cargo test --all --no-default-features --features="ntex/neon-uring,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws" + - name: Run tests (tokio) + timeout-minutes: 40 + run: | + cargo test --all --no-fail-fast --no-default-features --features="ntex/tokio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws" + + - name: Run tests (compio) + timeout-minutes: 40 + run: | + cargo test --all --no-default-features --features="ntex/compio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws" + - name: Install cargo-cache continue-on-error: true run: | diff --git a/.github/workflows/osx.yml b/.github/workflows/osx.yml index 049f349a..a926dd34 100644 --- a/.github/workflows/osx.yml +++ b/.github/workflows/osx.yml @@ -37,6 +37,10 @@ jobs: path: ~/.cargo/git key: ${{ matrix.version }}-aarch64-apple-darwin-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }} + - name: Run tests (neon) + timeout-minutes: 40 + run: cargo test --all --no-default-features --no-fail-fast --features="ntex/neon,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws" + - name: Run tests (tokio) run: cargo test --all --no-default-features --no-fail-fast --features="ntex/tokio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws" @@ -44,10 +48,6 @@ jobs: timeout-minutes: 40 run: cargo test --all --no-default-features --no-fail-fast --features="ntex/compio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws" - - name: Run tests (neon) - timeout-minutes: 40 - run: cargo test --all --no-default-features --no-fail-fast --features="ntex/neon,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws" - - name: Install cargo-cache continue-on-error: true run: cargo install cargo-cache --no-default-features --features ci-autoclean diff --git a/ntex-net/src/rt_polling/driver.rs b/ntex-net/src/rt_polling/driver.rs index d90c73ba..559e8023 100644 --- a/ntex-net/src/rt_polling/driver.rs +++ b/ntex-net/src/rt_polling/driver.rs @@ -132,11 +132,10 @@ impl Handler for StreamOpsHandler { .inspect(|size| { unsafe { buf.advance_mut(*size) }; log::debug!( - "{}: {:?}, SIZE: {:?}, BUF: {:?}", + "{}: {:?}, SIZE: {:?}", item.context.tag(), item.fd, - size, - buf, + size ); }), ) @@ -150,11 +149,10 @@ impl Handler for StreamOpsHandler { let item = &mut streams[id]; let result = item.context.with_write_buf(|buf| { log::debug!( - "{}: writing {:?} SIZE: {:?}, BUF: {:?}", + "{}: writing {:?} SIZE: {:?}", item.context.tag(), item.fd, - buf.len(), - buf, + buf.len() ); let slice = &buf[..]; syscall!( @@ -286,11 +284,10 @@ impl StreamCtl { .inspect(|size| { unsafe { buf.advance_mut(*size) }; log::debug!( - "{}: {:?}, SIZE: {:?}, BUF: {:?}", + "{}: {:?}, SIZE: {:?}", item.context.tag(), item.fd, - size, - buf, + size ); }), )