Skip to content

Commit 39c35e7

Browse files
committed
Rename CTIMETEST -> CTIMETESTS
1 parent fab853f commit 39c35e7

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.cirrus.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ env:
2323
SECP256K1_TEST_ITERS:
2424
BENCH: yes
2525
SECP256K1_BENCH_ITERS: 2
26-
CTIMETEST: yes
26+
CTIMETESTS: yes
2727
# Compile and run the tests
2828
EXAMPLES: yes
2929

@@ -79,9 +79,9 @@ task:
7979
- env: {WIDEMUL: int128, ECDH: yes, SCHNORRSIG: yes}
8080
- env: {WIDEMUL: int128, ASM: x86_64}
8181
- env: { RECOVERY: yes, SCHNORRSIG: yes}
82-
- env: {BUILD: distcheck, WITH_VALGRIND: no, CTIMETEST: no, BENCH: no}
82+
- env: {BUILD: distcheck, WITH_VALGRIND: no, CTIMETESTS: no, BENCH: no}
8383
- env: {CPPFLAGS: -DDETERMINISTIC}
84-
- env: {CFLAGS: -O0, CTIMETEST: no}
84+
- env: {CFLAGS: -O0, CTIMETESTS: no}
8585
- env: { ECMULTGENPRECISION: 2, ECMULTWINDOW: 2 }
8686
- env: { ECMULTGENPRECISION: 8, ECMULTWINDOW: 4 }
8787
matrix:
@@ -126,7 +126,7 @@ task:
126126
env:
127127
ASM: no
128128
WITH_VALGRIND: no
129-
CTIMETEST: no
129+
CTIMETESTS: no
130130
matrix:
131131
- env:
132132
CC: gcc
@@ -151,7 +151,7 @@ task:
151151
ECDH: yes
152152
RECOVERY: yes
153153
SCHNORRSIG: yes
154-
CTIMETEST: no
154+
CTIMETESTS: no
155155
<< : *MERGE_BASE
156156
test_script:
157157
# https://sourceware.org/bugzilla/show_bug.cgi?id=27008
@@ -170,7 +170,7 @@ task:
170170
ECDH: yes
171171
RECOVERY: yes
172172
SCHNORRSIG: yes
173-
CTIMETEST: no
173+
CTIMETESTS: no
174174
matrix:
175175
- env: {}
176176
- env: {EXPERIMENTAL: yes, ASM: arm}
@@ -190,7 +190,7 @@ task:
190190
ECDH: yes
191191
RECOVERY: yes
192192
SCHNORRSIG: yes
193-
CTIMETEST: no
193+
CTIMETESTS: no
194194
<< : *MERGE_BASE
195195
test_script:
196196
- ./ci/cirrus.sh
@@ -207,7 +207,7 @@ task:
207207
ECDH: yes
208208
RECOVERY: yes
209209
SCHNORRSIG: yes
210-
CTIMETEST: no
210+
CTIMETESTS: no
211211
<< : *MERGE_BASE
212212
test_script:
213213
- ./ci/cirrus.sh
@@ -221,7 +221,7 @@ task:
221221
ECDH: yes
222222
RECOVERY: yes
223223
SCHNORRSIG: yes
224-
CTIMETEST: no
224+
CTIMETESTS: no
225225
matrix:
226226
- name: "x86_64 (mingw32-w64): Windows (Debian stable, Wine)"
227227
env:
@@ -244,7 +244,7 @@ task:
244244
RECOVERY: yes
245245
EXPERIMENTAL: yes
246246
SCHNORRSIG: yes
247-
CTIMETEST: no
247+
CTIMETESTS: no
248248
# Use a MinGW-w64 host to tell ./configure we're building for Windows.
249249
# This will detect some MinGW-w64 tools but then make will need only
250250
# the MSVC tools CC, AR and NM as specified below.
@@ -283,7 +283,7 @@ task:
283283
ECDH: yes
284284
RECOVERY: yes
285285
SCHNORRSIG: yes
286-
CTIMETEST: no
286+
CTIMETESTS: no
287287
matrix:
288288
- name: "Valgrind (memcheck)"
289289
container:
@@ -328,7 +328,7 @@ task:
328328
ECDH: yes
329329
RECOVERY: yes
330330
SCHNORRSIG: yes
331-
CTIMETEST: yes
331+
CTIMETESTS: yes
332332
CC: clang
333333
SECP256K1_TEST_ITERS: 32
334334
ASM: no

ci/cirrus.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ print_environment() {
1313
for var in WERROR_CFLAGS MAKEFLAGS BUILD \
1414
ECMULTWINDOW ECMULTGENPRECISION ASM WIDEMUL WITH_VALGRIND EXTRAFLAGS \
1515
EXPERIMENTAL ECDH RECOVERY SCHNORRSIG \
16-
SECP256K1_TEST_ITERS BENCH SECP256K1_BENCH_ITERS CTIMETEST\
16+
SECP256K1_TEST_ITERS BENCH SECP256K1_BENCH_ITERS CTIMETESTS\
1717
EXAMPLES \
1818
HOST WRAPPER_CMD \
1919
CC CFLAGS CPPFLAGS AR NM
@@ -62,7 +62,7 @@ fi
6262
--enable-module-ecdh="$ECDH" --enable-module-recovery="$RECOVERY" \
6363
--enable-module-schnorrsig="$SCHNORRSIG" \
6464
--enable-examples="$EXAMPLES" \
65-
--enable-ctime-tests="$CTIMETEST" \
65+
--enable-ctime-tests="$CTIMETESTS" \
6666
--with-valgrind="$WITH_VALGRIND" \
6767
--host="$HOST" $EXTRAFLAGS
6868

@@ -95,7 +95,7 @@ then
9595
} >> bench.log 2>&1
9696
fi
9797

98-
if [ "$CTIMETEST" = "yes" ]
98+
if [ "$CTIMETESTS" = "yes" ]
9999
then
100100
if [ "$WITH_VALGRIND" = "yes" ]; then
101101
./libtool --mode=execute valgrind --error-exitcode=42 ./ctime_tests > ctime_tests.log 2>&1

0 commit comments

Comments
 (0)