aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/tests
diff options
context:
space:
mode:
authorDániel Buga <[email protected]>2024-12-16 20:17:43 +0100
committerDániel Buga <[email protected]>2024-12-16 20:37:02 +0100
commitc3c571e01ef902ccd2c3b176a4bc6ee3547d5da7 (patch)
tree46f4bc51b843f86520c2aaeae556c0c96c8e350a /embassy-executor/tests
parentc90d048ecb611908f5696b4f57d689bdb254aee6 (diff)
Remove test implementation of schedule_wake
Diffstat (limited to 'embassy-executor/tests')
-rw-r--r--embassy-executor/tests/test.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/embassy-executor/tests/test.rs b/embassy-executor/tests/test.rs
index 992ab3da9..0ce1f1891 100644
--- a/embassy-executor/tests/test.rs
+++ b/embassy-executor/tests/test.rs
@@ -150,7 +150,3 @@ fn executor_task_cfg_args() {
150 let (_, _, _) = (a, b, c); 150 let (_, _, _) = (a, b, c);
151 } 151 }
152} 152}
153
154// We need this for the test to compile, even though we don't want to use timers at the moment.
155#[no_mangle]
156fn _embassy_time_schedule_wake(_at: u64, _waker: &core::task::Waker) {}