* docs: Document new xtask features * style: format deps * feat: enable all the aliases * feat: Update embedded-tests executors * feat: Enable running only one test * feat: Exit if a test fails * docs: Fix typo in command * build: Enable xtensa-semihosting in xtensa targets * feat: Handle probe-rs esp32 chip name * style: Clippy lints * revert: Exit if a test fails * chore: Remove aliases * feat: Remove unnecesary toogle * feat: Error if a test fails and print failed tests
24 lines
510 B
TOML
24 lines
510 B
TOML
[target.'cfg(target_arch = "riscv32")']
|
|
runner = "probe-rs run"
|
|
rustflags = [
|
|
"-C", "link-arg=-Tlinkall.x",
|
|
"-C", "link-arg=-Tembedded-test.x",
|
|
"-C", "link-arg=-Tdefmt.x",
|
|
"-C", "force-frame-pointers"
|
|
]
|
|
|
|
[target.'cfg(target_arch = "xtensa")']
|
|
runner = "probe-rs run"
|
|
rustflags = [
|
|
"-C", "link-arg=-nostartfiles",
|
|
"-C", "link-arg=-Wl,-Tlinkall.x",
|
|
"-C", "link-arg=-Tdefmt.x",
|
|
"-C", "link-arg=-Tembedded-test.x",
|
|
]
|
|
|
|
[env]
|
|
DEFMT_LOG = "info"
|
|
|
|
[unstable]
|
|
build-std = ["core"]
|