Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/crypto-bigint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ jobs:
- run: cargo test --target ${{ matrix.target }} --no-default-features ${{ matrix.args }}
- run: cargo test --target ${{ matrix.target }} ${{ matrix.args }}
- run: cargo test --target ${{ matrix.target }} --all-features ${{ matrix.args }}
- run: cargo test --target ${{ matrix.target }} --all-features ${{ matrix.args }} -- --ignored # slow bingcd tests

# Test using `cargo careful`
test-careful:
Expand Down
1 change: 1 addition & 0 deletions src/uint/bingcd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ mod tests {
}

#[test]
#[ignore] // TODO(tarcieri): improve performance

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@erik-3milabs I can list you on these if you prefer (or we can open a tracking issue and put the issue number)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm already working on this in #846 :)

fn test_bingcd() {
let mut rng = ChaCha8Rng::from_seed(*b"01234567890123456789012345678901");
bingcd_tests::<{ U256::LIMBS }>(&mut rng);
Expand Down
2 changes: 2 additions & 0 deletions src/uint/bingcd/gcd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ mod tests {
}

#[test]
#[ignore] // TODO(tarcieri): improve performance
fn test_classic_bingcd() {
let mut rng = ChaCha8Rng::from_seed(*b"01234567890123456789012345678901");
classic_bingcd_tests::<{ U64::LIMBS }>(&mut rng);
Expand Down Expand Up @@ -243,6 +244,7 @@ mod tests {
}

#[test]
#[ignore] // TODO(tarcieri): improve performance
fn test_optimized_bingcd() {
let mut rng = ChaCha8Rng::from_seed(*b"01234567890123456789012345678901");

Expand Down