More tests (#159)

* More tests
* clippy tests
This commit is contained in:
Nikolay Kim 2023-01-08 17:45:22 +06:00 committed by GitHub
parent f47e830cfb
commit 15019a2a43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
32 changed files with 196 additions and 118 deletions

View file

@ -69,15 +69,15 @@ mod glommio {
F: Future + 'static,
F::Output: 'static,
{
let ptr = crate::CB.with(|cb| (&cb.borrow().0)());
let ptr = crate::CB.with(|cb| (cb.borrow().0)());
JoinHandle {
fut: Either::Left(
glomm_io::spawn_local(async move {
if let Some(ptr) = ptr {
let new_ptr = crate::CB.with(|cb| (&cb.borrow().1)(ptr));
let new_ptr = crate::CB.with(|cb| (cb.borrow().1)(ptr));
glomm_io::executor().yield_now().await;
let res = f.await;
crate::CB.with(|cb| (&cb.borrow().2)(new_ptr));
crate::CB.with(|cb| (cb.borrow().2)(new_ptr));
res
} else {
glomm_io::executor().yield_now().await;
@ -170,12 +170,12 @@ mod tokio {
where
F: Future + 'static,
{
let ptr = crate::CB.with(|cb| (&cb.borrow().0)());
let ptr = crate::CB.with(|cb| (cb.borrow().0)());
tok_io::task::spawn_local(async move {
if let Some(ptr) = ptr {
let new_ptr = crate::CB.with(|cb| (&cb.borrow().1)(ptr));
let new_ptr = crate::CB.with(|cb| (cb.borrow().1)(ptr));
let res = f.await;
crate::CB.with(|cb| (&cb.borrow().2)(new_ptr));
crate::CB.with(|cb| (cb.borrow().2)(new_ptr));
res
} else {
f.await
@ -224,13 +224,13 @@ mod asyncstd {
where
F: Future + 'static,
{
let ptr = crate::CB.with(|cb| (&cb.borrow().0)());
let ptr = crate::CB.with(|cb| (cb.borrow().0)());
JoinHandle {
fut: async_std::task::spawn_local(async move {
if let Some(ptr) = ptr {
let new_ptr = crate::CB.with(|cb| (&cb.borrow().1)(ptr));
let new_ptr = crate::CB.with(|cb| (cb.borrow().1)(ptr));
let res = f.await;
crate::CB.with(|cb| (&cb.borrow().2)(new_ptr));
crate::CB.with(|cb| (cb.borrow().2)(new_ptr));
res
} else {
f.await