-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ctime_test: move context randomization test to the end #894
Conversation
ah, indeed the comment said it needed to be last. :) Did you look into why it wasn't causing failures with the schnorrsig test? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Concept ACK
nice catch and good idea to extract a function
edit: Ah, I didn't want to github-"approve". Anyway, we don't give attention to this.
The reason is that in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK 7d3497c diff looks good
Summary: the idea is to have a markdown convention that will link to the two repos we already backport from and include the bitcoin-core/gui repo after this diff I establish the following convention: summary text in the format LOWERCASE_SUPPORTED_REPO_PREFIX#PR_NUMBER will be replaced with a link to the appropriate PR if LOWERCASE_SUPPORTED_REPO_PREFIX is in the relevant dictionary in server.py examples: core#17234 should replace to [[bitcoin/bitcoin#17234 | core#17234]] core-gui#9 to [[bitcoin-core/gui#9 | core-gui#9]] and secp256k1#894 to [[bitcoin-core/secp256k1#894 | secp256k1#894]] Test Plan: pytest Reviewers: Fabien, #bitcoin_abc, PiRK Reviewed By: #bitcoin_abc, PiRK Differential Revision: https://reviews.bitcoinabc.org/D9258
This commit adds test coverage including Travis scripts, Valgrind constant time tests for secret data, API tests, nonce function tests, and test vectors from the spec. This commit includes changes from bitcoin-core/secp256k1#894 that fix a bug upstream.
Summary: ``` I noticed this while reviewing BlockstreamResearch/secp256k1-zkp#117 and finding some seemingly unnecessary VALGRIND_MAKE_MEM_DEFINED that I couldn't remove until I saw the bug. ``` Backport of [[bitcoin-core/secp256k1#894 | secp256k1#894]] Test Plan: ninja check-secp256k1 libtool --mode=execute valgrind ./valgrind_ctime_test Reviewers: #bitcoin_abc, majcosta Reviewed By: #bitcoin_abc, majcosta Differential Revision: https://reviews.bitcoinabc.org/D9389
Summary: ``` I noticed this while reviewing BlockstreamResearch/secp256k1-zkp#117 and finding some seemingly unnecessary VALGRIND_MAKE_MEM_DEFINED that I couldn't remove until I saw the bug. ``` Backport of [[bitcoin-core/secp256k1#894 | secp256k1#894]] Test Plan: ninja check-secp256k1 libtool --mode=execute valgrind ./valgrind_ctime_test Reviewers: #bitcoin_abc, majcosta Reviewed By: #bitcoin_abc, majcosta Differential Revision: https://reviews.bitcoinabc.org/D9389
I noticed this while reviewing BlockstreamResearch/secp256k1-zkp#117 and finding some seemingly unnecessary
VALGRIND_MAKE_MEM_DEFINED
that I couldn't remove until I saw the bug.