ci: Add a sleep test

I think this catches errors in notification for the Linux backend.

Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
John Nunley 2024-03-30 07:53:05 -07:00
parent bbd42b56f8
commit 75e2ea1959
No known key found for this signature in database
GPG Key ID: 2FE69973CFD64832
1 changed files with 13 additions and 0 deletions

13
tests/sleep.rs Normal file
View File

@ -0,0 +1,13 @@
//! Sleep test.
use async_process::Command;
use futures_lite::future::block_on;
#[cfg(unix)]
#[test]
fn unix_sleep() {
block_on(async {
let status = Command::new("sleep").arg("1").status().await.unwrap();
assert!(status.success());
});
}