Enable uds tests for glommio

This commit is contained in:
Nikolay Kim 2022-02-20 21:22:06 +06:00
parent 575e534428
commit abeaec9d64
3 changed files with 5 additions and 3 deletions

View file

@ -80,7 +80,7 @@ jobs:
continue-on-error: true continue-on-error: true
run: | run: |
cd ntex cd ntex
sudo -E env PATH="$PATH" bash -c "ulimit -l 512 && ulimit -a && cargo tarpaulin --out Xml --no-default-features --features=\"glommio,cookie,url,compress,openssl,rustls\" --lib" sudo -E env PATH="$PATH" bash -c "ulimit -l 512 && ulimit -a && cargo tarpaulin --out Xml --no-default-features --features=\"glommio,cookie,url,compress,openssl,rustls\""
- name: Upload to Codecov - name: Upload to Codecov
if: matrix.version == '1.56.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') if: matrix.version == '1.56.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')

View file

@ -127,6 +127,7 @@ fn test_run() {
} }
#[test] #[test]
#[cfg(feature = "tokio")]
fn test_on_worker_start() { fn test_on_worker_start() {
let addr1 = TestServer::unused_addr(); let addr1 = TestServer::unused_addr();
let addr2 = TestServer::unused_addr(); let addr2 = TestServer::unused_addr();
@ -185,6 +186,7 @@ fn test_on_worker_start() {
} }
#[test] #[test]
#[cfg(feature = "tokio")]
#[allow(unreachable_code)] #[allow(unreachable_code)]
fn test_panic_in_worker() { fn test_panic_in_worker() {
let counter = Arc::new(AtomicUsize::new(0)); let counter = Arc::new(AtomicUsize::new(0));

View file

@ -205,7 +205,7 @@ async fn test_rustls() {
} }
#[ntex::test] #[ntex::test]
#[cfg(all(feature = "tokio", unix))] #[cfg(unix)]
async fn test_bind_uds() { async fn test_bind_uds() {
let (tx, rx) = mpsc::channel(); let (tx, rx) = mpsc::channel();
@ -254,7 +254,7 @@ async fn test_bind_uds() {
} }
#[ntex::test] #[ntex::test]
#[cfg(all(feature = "tokio", unix))] #[cfg(unix)]
async fn test_listen_uds() { async fn test_listen_uds() {
let (tx, rx) = mpsc::channel(); let (tx, rx) = mpsc::channel();