diff --git a/embassy-executor/tests/test.rs b/embassy-executor/tests/test.rs index 78c49c071..d8c5a6ae3 100644 --- a/embassy-executor/tests/test.rs +++ b/embassy-executor/tests/test.rs @@ -69,6 +69,7 @@ fn executor_task() { &[ "pend", // spawning a task pends the executor "poll task1", // poll only once. + "pend", // task is done, wakes itself to exit ] ) } @@ -179,6 +180,7 @@ fn waking_after_completion_does_not_poll() { "pend", // manual wake, single pend for two wakes "pend", // respawning a task pends the executor "poll task1", // + "pend", // task is done, wakes itself to exit ] ) } @@ -266,6 +268,7 @@ fn waking_with_old_waker_after_respawn() { "yield_now", // "pend", // manual wake, gets cleared by poll "poll task1", // + "pend", // task is done, wakes itself to exit ] ); }