Skip to content

Commit

Permalink
test: reenable esp32c3 hil
Browse files Browse the repository at this point in the history
  • Loading branch information
lulf committed Jan 16, 2025
1 parent 0364234 commit 60b7837
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions examples/tests/tests/ble_l2cap_peripheral.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,13 @@ async fn ble_l2cap_peripheral_nrf52() {
.await;
}

/*
#[tokio::test(flavor = "multi_thread")]
async fn l2cap_peripheral_esp32() {
#[tokio::test]
async fn ble_l2cap_peripheral_esp32c3() {
let _ = pretty_env_logger::try_init();
let fw = std::fs::read("bins/esp32/ble_l2cap_peripheral").unwrap();
let firmware = probe::Firmware {
data: fw,
format: Format::Idf(Default::default()),
};
let firmware = probe::Firmware { data: fw };
run_l2cap_peripheral_test(&[("target", "esp32"), ("board", "esp-rust-board")], firmware).await;
}
*/

async fn run_l2cap_peripheral_test(labels: &[(&str, &str)], firmware: probe::Firmware) {
let ctx = TestContext::new();
Expand Down

0 comments on commit 60b7837

Please sign in to comment.