File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ void test_batch_api(void) {
55
55
secp256k1_batch * batch_sign ;
56
56
secp256k1_batch * batch_vrfy ;
57
57
secp256k1_batch * batch_both ;
58
- secp256k1_batch * batch_sttc ;
58
+ /* secp256k1_batch *batch_sttc; */
59
59
int ecount ;
60
60
size_t i ;
61
61
@@ -110,13 +110,13 @@ void test_batch_api(void) {
110
110
CHECK (batch_both != NULL );
111
111
CHECK (ecount == 0 );
112
112
/* 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);
114
114
CHECK(batch_sttc == NULL);
115
- CHECK (ecount == 1 );
115
+ CHECK(ecount == 1); */
116
116
/* 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);
118
118
CHECK(batch_sttc == NULL);
119
- CHECK (ecount == 2 );
119
+ CHECK(ecount == 2); */
120
120
121
121
#ifdef ENABLE_MODULE_SCHNORRSIG
122
122
/* secp256k1_batch_add tests for batch_none */
You can’t perform that action at this time.
0 commit comments