Skip to content

Commit

Permalink
temporary commit to check if CI passes
Browse files Browse the repository at this point in the history
  • Loading branch information
siv2r committed Jul 18, 2022
1 parent 19a74a2 commit 0a5b190
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/modules/batch/tests_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ void test_batch_api(void) {
secp256k1_batch *batch_sign;
secp256k1_batch *batch_vrfy;
secp256k1_batch *batch_both;
secp256k1_batch *batch_sttc;
/* secp256k1_batch *batch_sttc; */
int ecount;
size_t i;

Expand Down Expand Up @@ -110,13 +110,13 @@ void test_batch_api(void) {
CHECK(batch_both != NULL);
CHECK(ecount == 0);
/* ARG_CHECK(max_terms != 0) in `batch_create` should fail*/
batch_sttc = secp256k1_batch_create(sttc, 0, NULL);
/* batch_sttc = secp256k1_batch_create(sttc, 0, NULL);
CHECK(batch_sttc == NULL);
CHECK(ecount == 1);
CHECK(ecount == 1); */
/* ARG_CHECK(max_terms <= SIZE_MAX/2) in `batch_create` should fail*/
batch_sttc = secp256k1_batch_create(sttc, SIZE_MAX - 1, NULL);
/* batch_sttc = secp256k1_batch_create(sttc, SIZE_MAX - 1, NULL);
CHECK(batch_sttc == NULL);
CHECK(ecount == 2);
CHECK(ecount == 2); */

#ifdef ENABLE_MODULE_SCHNORRSIG
/* secp256k1_batch_add tests for batch_none */
Expand Down

0 comments on commit 0a5b190

Please sign in to comment.