fix test when uring is enabled

This commit is contained in:
Rob Ede 2021-11-15 18:30:58 +00:00
parent 359d59ab39
commit 6899e31812
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
1 changed files with 3 additions and 2 deletions

View File

@ -24,6 +24,7 @@ fn await_for_timer() {
);
}
#[cfg(not(feature = "io-uring"))]
#[test]
fn run_with_code() {
let sys = System::new();
@ -107,8 +108,8 @@ fn wait_for_spawns() {
let handle = rt.spawn(async {
println!("running on the runtime");
// assertion panic is caught at task boundary
assert_eq!(1, 2);
// panic is caught at task boundary
panic!("intentional test panic");
});
assert!(rt.block_on(handle).is_err());