File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 5
5
# -pedantic-errors is not equivalent to -Werror=pedantic and thus not implied by -Werror according to the GCC manual.
6
6
WERROR_CFLAGS : -Werror -pedantic-errors
7
7
MAKEFLAGS : -j4
8
- BUILD : check
9
8
# ## secp256k1 config
10
9
ECMULTWINDOW : auto
11
10
ECMULTGENPRECISION : auto
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ file .libs/* || true
34
34
# This tells `make check` to wrap test invocations.
35
35
export LOG_COMPILER=" $WRAPPER_CMD "
36
36
37
- make " $BUILD "
37
+ make check
38
38
39
39
if [ " $BENCH " = " yes" ]
40
40
then
56
56
./libtool --mode=execute valgrind --error-exitcode=42 ./valgrind_ctime_test > valgrind_ctime_test.log 2>&1
57
57
fi
58
58
59
+ # `distcheck` includes `check` but we don't want to run the `check` part again,
60
+ # so we use a hack to make all tests immediately 77 (=SKIP).
61
+ make distcheck LOG_COMPILER=" sh -c 'exit 77'"
62
+
59
63
# Rebuild precomputed files (if not cross-compiling).
60
64
if [ -z " $HOST " ]
61
65
then
You can’t perform that action at this time.
0 commit comments