Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: remove "endomorphism" flag from contrib script; increase context …
Browse files Browse the repository at this point in the history
…memory requirement for no_std test
apoelstra committed Dec 21, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent dc6ff21 commit 83663db
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh -ex

FEATURES="bitcoin_hashes endomorphism global-context lowmemory rand rand-std recovery serde"
FEATURES="bitcoin_hashes global-context lowmemory rand rand-std recovery serde"

# Use toolchain if explicitly specified
if [ -n "$TOOLCHAIN" ]
2 changes: 1 addition & 1 deletion no_std_test/src/main.rs
Original file line number Diff line number Diff line change
@@ -83,7 +83,7 @@ impl RngCore for FakeRng {

#[start]
fn start(_argc: isize, _argv: *const *const u8) -> isize {
let mut buf = [AlignedType::zeroed(); 37_000];
let mut buf = [AlignedType::zeroed(); 70_000];
let size = Secp256k1::preallocate_size();
unsafe { libc::printf("needed size: %d\n\0".as_ptr() as _, size) };

0 comments on commit 83663db

Please sign in to comment.