no_std
Only supports ARM Cortex-M semi-hosting for now.
Add embedded_test_harness
and
testmacro = { git = "https://github.com/yhql/testmacro"}
to Cargo.toml dev-dependencies
.
Then you may write tests following this template:
```Rust
use panic_semihosting as _;
use embeddedtestharness::test_runner;
mod tests { use testmacro::testitem as test; use embeddedtest_harness::TestType;
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}
/// _start is the entrypoint specified in the linker
pub fn start() -> ! { #[cfg(test)] testmain();
loop {}
} ```