Skip to content

Commit 0a5b190

Browse files
committed
temporary commit to check if CI passes
1 parent 19a74a2 commit 0a5b190

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/modules/batch/tests_impl.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void test_batch_api(void) {
5555
secp256k1_batch *batch_sign;
5656
secp256k1_batch *batch_vrfy;
5757
secp256k1_batch *batch_both;
58-
secp256k1_batch *batch_sttc;
58+
/* secp256k1_batch *batch_sttc; */
5959
int ecount;
6060
size_t i;
6161

@@ -110,13 +110,13 @@ void test_batch_api(void) {
110110
CHECK(batch_both != NULL);
111111
CHECK(ecount == 0);
112112
/* ARG_CHECK(max_terms != 0) in `batch_create` should fail*/
113-
batch_sttc = secp256k1_batch_create(sttc, 0, NULL);
113+
/* batch_sttc = secp256k1_batch_create(sttc, 0, NULL);
114114
CHECK(batch_sttc == NULL);
115-
CHECK(ecount == 1);
115+
CHECK(ecount == 1); */
116116
/* ARG_CHECK(max_terms <= SIZE_MAX/2) in `batch_create` should fail*/
117-
batch_sttc = secp256k1_batch_create(sttc, SIZE_MAX - 1, NULL);
117+
/* batch_sttc = secp256k1_batch_create(sttc, SIZE_MAX - 1, NULL);
118118
CHECK(batch_sttc == NULL);
119-
CHECK(ecount == 2);
119+
CHECK(ecount == 2); */
120120

121121
#ifdef ENABLE_MODULE_SCHNORRSIG
122122
/* secp256k1_batch_add tests for batch_none */

0 commit comments

Comments
 (0)