aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/tests
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-12-17 14:52:12 +0100
committerGitHub <[email protected]>2024-12-17 14:52:12 +0100
commitc504ae8d3a5eb754e0b0920b346dd1a2dc9e2b48 (patch)
treedfc3ac53ba9ffd270dc3d4e8b5a3d3daec3c3611 /embassy-executor/tests
parent9cf037bc954cc347b5d52d90207f68090cc5b09e (diff)
parentc3c571e01ef902ccd2c3b176a4bc6ee3547d5da7 (diff)
Merge pull request #3656 from bugadani/timer-queue-special
Remove special handling of integrated timer queues and items
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) {}