* Simplify I2S async test * Allow running tests repeatedly * Fail at the first mismatch * Clean up
27 lines
567 B
TOML
27 lines
567 B
TOML
[target.'cfg(target_arch = "riscv32")']
|
|
runner = "probe-rs run --preverify"
|
|
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 --preverify"
|
|
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"]
|
|
|
|
[net]
|
|
git-fetch-with-cli = true
|