Disable failing tests (#2910)

This commit is contained in:
Dániel Buga 2025-01-08 15:38:10 +01:00 committed by GitHub
parent 6b4312fb90
commit 246e7f1c8b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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() {
@ -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() {