Skip to content

Commit

Permalink
Disable failing tests (#2910)
Browse files Browse the repository at this point in the history
  • Loading branch information
bugadani authored Jan 8, 2025
1 parent 6b4312f commit 246e7f1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions hil-test/tests/spi_full_duplex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ mod tests {
}

#[test]
#[cfg(not(esp32))] // https://github.com/esp-rs/esp-hal/issues/2909
async fn test_async_symmetric_transfer_huge_buffer(ctx: Context) {
let write = &mut ctx.tx_buffer[0..4096];
for byte in 0..write.len() {
Expand Down Expand Up @@ -288,6 +289,7 @@ mod tests {
}

#[test]
#[cfg(not(esp32))] // https://github.com/esp-rs/esp-hal/issues/2909
async fn test_async_symmetric_transfer_huge_buffer_in_place(ctx: Context) {
let write = &mut ctx.tx_buffer[0..4096];
for byte in 0..write.len() {
Expand Down

0 comments on commit 246e7f1

Please sign in to comment.