File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -1585,7 +1585,11 @@ AM_CONDITIONAL([ENABLE_ZMQ], [test "x$use_zmq" = "xyes"])
1585
1585
1586
1586
AC_MSG_CHECKING ( [ whether to build test_bitcoin] )
1587
1587
if test x$use_tests = xyes; then
1588
- AC_MSG_RESULT ( [ yes] )
1588
+ if test "x$enable_fuzz" = "xyes"; then
1589
+ AC_MSG_RESULT ( [ no, because fuzzing is enabled] )
1590
+ else
1591
+ AC_MSG_RESULT ( [ yes] )
1592
+ fi
1589
1593
BUILD_TEST="yes"
1590
1594
else
1591
1595
AC_MSG_RESULT ( [ no] )
@@ -1761,8 +1765,10 @@ if test x$bitcoin_enable_qt != xno; then
1761
1765
echo " with qr = $use_qr"
1762
1766
fi
1763
1767
echo " with zmq = $use_zmq"
1764
- echo " with test = $use_tests"
1765
- if test x$use_tests != xno; then
1768
+ if test x$enable_fuzz == xno; then
1769
+ echo " with test = $use_tests"
1770
+ else
1771
+ echo " with test = not building test_bitcoin because fuzzing is enabled"
1766
1772
echo " with fuzz = $enable_fuzz"
1767
1773
fi
1768
1774
echo " with bench = $use_bench"
You can’t perform that action at this time.
0 commit comments