build: Remove negated --enable-fuzz checks from build system

This commit is contained in:
MarcoFalke
2022-02-08 18:30:24 +01:00
committed by MacroFake
parent e3b06e8dd8
commit fa7cbc6e5c
3 changed files with 6 additions and 7 deletions

View File

@@ -1053,9 +1053,7 @@ include Makefile.leveldb.include
include Makefile.test_util.include
include Makefile.test_fuzz.include
if ENABLE_TESTS
include Makefile.test.include
endif
if ENABLE_BENCH
include Makefile.bench.include

View File

@@ -6,7 +6,7 @@ if ENABLE_FUZZ_BINARY
noinst_PROGRAMS += test/fuzz/fuzz
endif
if !ENABLE_FUZZ
if ENABLE_TESTS
bin_PROGRAMS += test/test_bitcoin
endif
@@ -371,7 +371,7 @@ endif
endif
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C secp256k1 check
if !ENABLE_FUZZ
if ENABLE_TESTS
UNIVALUE_TESTS = univalue/test/object univalue/test/unitester univalue/test/no_nul
noinst_PROGRAMS += $(UNIVALUE_TESTS)
TESTS += $(UNIVALUE_TESTS)