esp-hal/hil-test/.cargo/config.toml
Dániel Buga a10f86dbaa
Clean up i2s_async test, add option to repeat (#1951)
* Simplify I2S async test

* Allow running tests repeatedly

* Fail at the first mismatch

* Clean up
2024-08-15 11:48:23 +00:00

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