mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Enable uds tests for glommio
This commit is contained in:
parent
575e534428
commit
abeaec9d64
3 changed files with 5 additions and 3 deletions
2
.github/workflows/linux.yml
vendored
2
.github/workflows/linux.yml
vendored
|
@ -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')
|
||||||
|
|
|
@ -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));
|
||||||
|
|
|
@ -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();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue