Skip to content

Commit

Permalink
chore: ignore sector update compound tests (#1592)
Browse files Browse the repository at this point in the history
The sector update compound tests take a long time to run, ignore them
by default, like other long running tests (e.g. the lifecycle ones).
  • Loading branch information
vmx committed Apr 26, 2022
1 parent 2ed8f02 commit 5d69d8e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions storage-proofs-update/tests/compound.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,31 +222,37 @@ where
}

#[test]
#[ignore]
fn test_empty_sector_update_compound_1kib() {
test_empty_sector_update_compound::<U8, U4, U0>(SECTOR_SIZE_1_KIB);
}

#[test]
#[ignore]
fn test_empty_sector_update_compound_2kib() {
test_empty_sector_update_compound::<U8, U0, U0>(SECTOR_SIZE_2_KIB);
}

#[test]
#[ignore]
fn test_empty_sector_update_compound_4kib() {
test_empty_sector_update_compound::<U8, U2, U0>(SECTOR_SIZE_4_KIB);
}

#[test]
#[ignore]
fn test_empty_sector_update_compound_8kib() {
test_empty_sector_update_compound::<U8, U4, U0>(SECTOR_SIZE_8_KIB);
}

#[test]
#[ignore]
fn test_empty_sector_update_compound_16kib() {
test_empty_sector_update_compound::<U8, U8, U0>(SECTOR_SIZE_16_KIB);
}

#[test]
#[ignore]
fn test_empty_sector_update_compound_32kib() {
test_empty_sector_update_compound::<U8, U8, U2>(SECTOR_SIZE_32_KIB);
}

0 comments on commit 5d69d8e

Please sign in to comment.