Skip to content

Commit

Permalink
Disable Shuttle tests for IPA with multi-threading enabled
Browse files Browse the repository at this point in the history
They fail with too many steps issue, so we likely can't make it work for the whole protocol.
  • Loading branch information
akoshelev committed Jan 19, 2024
1 parent 105c76a commit a2c2f6f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion ipa-core/src/protocol/ipa/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,16 @@ where
.collect::<Vec<_>>()
}

#[cfg(all(test, any(unit_test, feature = "shuttle")))]
#[cfg(all(
test,
any(
unit_test,
all(
any(feature = "shuttle", feature = "multi-threading"),
not(all(feature = "shuttle", feature = "multi-threading"))
)
)
))]
pub mod tests {
use std::num::NonZeroU32;

Expand Down

0 comments on commit a2c2f6f

Please sign in to comment.