aboutsummaryrefslogtreecommitdiff
path: root/tests/riscv32
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-11-27 01:21:44 +0100
committerDario Nieuwenhuis <[email protected]>2023-11-27 01:23:49 +0100
commit0bd47c779bcb909000db28d8e09600e6aeaf21ab (patch)
tree6d4adca4370d432c0f86c62ecd8e82d3dcc44afb /tests/riscv32
parent44816313268ec2c8b0e8a11443836db48731edc7 (diff)
tests: use executor task arena instead of TAIT.
Diffstat (limited to 'tests/riscv32')
-rw-r--r--tests/riscv32/Cargo.toml2
-rw-r--r--tests/riscv32/src/bin/empty.rs1
2 files changed, 1 insertions, 2 deletions
diff --git a/tests/riscv32/Cargo.toml b/tests/riscv32/Cargo.toml
index 24597a033..0f9b82218 100644
--- a/tests/riscv32/Cargo.toml
+++ b/tests/riscv32/Cargo.toml
@@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
7[dependencies] 7[dependencies]
8critical-section = { version = "1.1.1", features = ["restore-state-bool"] } 8critical-section = { version = "1.1.1", features = ["restore-state-bool"] }
9embassy-sync = { version = "0.4.0", path = "../../embassy-sync" } 9embassy-sync = { version = "0.4.0", path = "../../embassy-sync" }
10embassy-executor = { version = "0.3.3", path = "../../embassy-executor", features = ["arch-riscv32", "nightly", "executor-thread"] } 10embassy-executor = { version = "0.3.3", path = "../../embassy-executor", features = ["arch-riscv32", "executor-thread"] }
11embassy-time = { version = "0.1.5", path = "../../embassy-time" } 11embassy-time = { version = "0.1.5", path = "../../embassy-time" }
12embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } 12embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
13 13
diff --git a/tests/riscv32/src/bin/empty.rs b/tests/riscv32/src/bin/empty.rs
index 1874caec4..55a103067 100644
--- a/tests/riscv32/src/bin/empty.rs
+++ b/tests/riscv32/src/bin/empty.rs
@@ -1,6 +1,5 @@
1#![no_std] 1#![no_std]
2#![no_main] 2#![no_main]
3#![feature(type_alias_impl_trait)]
4 3
5use embassy_executor::Spawner; 4use embassy_executor::Spawner;
6 5