Skip to content

Commit 98db9c9

Browse files
committed
Fix esp32c6 example
1 parent 202ff93 commit 98db9c9

File tree

11 files changed

+458
-291
lines changed

11 files changed

+458
-291
lines changed

.idea/embedded-test.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Test_esp32c6_defmt.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Test_esp32c6_log.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ Add the following to your `Cargo.toml`:
4040
embedded-test = { version = "0.7.0" }
4141

4242
[lib]
43-
harness = false
44-
45-
[[bin]]
46-
name = "example_binary"
47-
harness = false
43+
harness = false # Important: As we bring our own test harness for all tests
4844

4945
[[test]]
5046
name = "example_integration_test"
5147
harness = false
48+
49+
[[bin]]
50+
name = "example_binary"
51+
test = false # Unless you want to add unit tests to the binary
5252
```
5353

5454
Install the runner on your system:

0 commit comments

Comments
 (0)