Skip to content

Commit 0f088ec

Browse files
committed
Rename CTIMETEST -> CTIMETESTS
1 parent 74b026f commit 0f088ec

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

@@ -81,9 +81,9 @@ task:
8181
- env: {WIDEMUL: int128, ECDH: yes, SCHNORRSIG: yes}
8282
- env: {WIDEMUL: int128, ASM: x86_64}
8383
- env: { RECOVERY: yes, SCHNORRSIG: yes}
84-
- env: {BUILD: distcheck, WITH_VALGRIND: no, CTIMETEST: no, BENCH: no}
84+
- env: {BUILD: distcheck, WITH_VALGRIND: no, CTIMETESTS: no, BENCH: no}
8585
- env: {CPPFLAGS: -DDETERMINISTIC}
86-
- env: {CFLAGS: -O0, CTIMETEST: no}
86+
- env: {CFLAGS: -O0, CTIMETESTS: no}
8787
- env: { ECMULTGENPRECISION: 2, ECMULTWINDOW: 2 }
8888
- env: { ECMULTGENPRECISION: 8, ECMULTWINDOW: 4 }
8989
matrix:
@@ -128,7 +128,7 @@ task:
128128
env:
129129
ASM: no
130130
WITH_VALGRIND: no
131-
CTIMETEST: no
131+
CTIMETESTS: no
132132
matrix:
133133
- env:
134134
CC: gcc
@@ -153,7 +153,7 @@ task:
153153
ECDH: yes
154154
RECOVERY: yes
155155
SCHNORRSIG: yes
156-
CTIMETEST: no
156+
CTIMETESTS: no
157157
<< : *MERGE_BASE
158158
test_script:
159159
# https://sourceware.org/bugzilla/show_bug.cgi?id=27008
@@ -172,7 +172,7 @@ task:
172172
ECDH: yes
173173
RECOVERY: yes
174174
SCHNORRSIG: yes
175-
CTIMETEST: no
175+
CTIMETESTS: no
176176
matrix:
177177
- env: {}
178178
- env: {EXPERIMENTAL: yes, ASM: arm}
@@ -192,7 +192,7 @@ task:
192192
ECDH: yes
193193
RECOVERY: yes
194194
SCHNORRSIG: yes
195-
CTIMETEST: no
195+
CTIMETESTS: no
196196
<< : *MERGE_BASE
197197
test_script:
198198
- ./ci/cirrus.sh
@@ -209,7 +209,7 @@ task:
209209
ECDH: yes
210210
RECOVERY: yes
211211
SCHNORRSIG: yes
212-
CTIMETEST: no
212+
CTIMETESTS: no
213213
<< : *MERGE_BASE
214214
test_script:
215215
- ./ci/cirrus.sh
@@ -223,7 +223,7 @@ task:
223223
ECDH: yes
224224
RECOVERY: yes
225225
SCHNORRSIG: yes
226-
CTIMETEST: no
226+
CTIMETESTS: no
227227
matrix:
228228
- name: "x86_64 (mingw32-w64): Windows (Debian stable, Wine)"
229229
env:
@@ -246,7 +246,7 @@ task:
246246
RECOVERY: yes
247247
EXPERIMENTAL: yes
248248
SCHNORRSIG: yes
249-
CTIMETEST: no
249+
CTIMETESTS: no
250250
# Use a MinGW-w64 host to tell ./configure we're building for Windows.
251251
# This will detect some MinGW-w64 tools but then make will need only
252252
# the MSVC tools CC, AR and NM as specified below.
@@ -285,7 +285,7 @@ task:
285285
ECDH: yes
286286
RECOVERY: yes
287287
SCHNORRSIG: yes
288-
CTIMETEST: no
288+
CTIMETESTS: no
289289
matrix:
290290
- name: "Valgrind (memcheck)"
291291
container:
@@ -330,7 +330,7 @@ task:
330330
ECDH: yes
331331
RECOVERY: yes
332332
SCHNORRSIG: yes
333-
CTIMETEST: yes
333+
CTIMETESTS: yes
334334
CC: clang
335335
SECP256K1_TEST_ITERS: 32
336336
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)