Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
briansmith committed Jan 13, 2024
1 parent 1b86874 commit e4562fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ jobs:
runs-on: ${{ matrix.host_os }}

strategy:
fail-fast: false
matrix:
# XXX: See `test-features` below.
features:
Expand Down Expand Up @@ -413,6 +414,7 @@ jobs:
runs-on: ${{ matrix.host_os }}

strategy:
fail-fast: false
matrix:
features:
- --features=wasm32_unknown_unknown_js
Expand Down
1 change: 0 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,6 @@ fn prefix_all_symbols(pp: char, prefix_prefix: &str, prefix: &str) -> String {
];

static SYMBOLS_TO_PREFIX: &[&str] = &[
"CRYPTO_memcmp",
"CRYPTO_poly1305_finish",
"CRYPTO_poly1305_finish_neon",
"CRYPTO_poly1305_init",
Expand Down
2 changes: 1 addition & 1 deletion src/constant_time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub fn verify_slices_are_equal(a: &[u8], b: &[u8]) -> Result<(), error::Unspecif
}
}

prefixed_extern! {
extern {
fn CRYPTO_memcmp(a: *const u8, b: *const u8, len: c::size_t) -> c::int;
}

Expand Down

0 comments on commit e4562fd

Please sign in to comment.