2022-08-21 20:28:12 -04:00
|
|
|
FUZZPKG = brontide lnwire watchtower/wtwire zpay32
|
|
|
|
FUZZ_TEST_RUN_TIME = 30s
|
2020-09-23 14:55:08 +02:00
|
|
|
FUZZ_NUM_PROCESSES = 4
|
|
|
|
|
|
|
|
# If specific package is being fuzzed, construct the full name of the
|
|
|
|
# subpackage.
|
|
|
|
ifneq ($(pkg),)
|
|
|
|
FUZZPKG := $(pkg)
|
|
|
|
endif
|
|
|
|
|
|
|
|
# The default run time per fuzz test is pretty low and normally will be
|
|
|
|
# overwritten by a user depending on the time they have available.
|
2022-08-21 20:28:12 -04:00
|
|
|
ifneq ($(fuzztime),)
|
|
|
|
FUZZ_TEST_RUN_TIME := $(fuzztime)
|
2020-09-23 14:55:08 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
# Overwrites the number of parallel processes. Should be set to the number of
|
|
|
|
# processor cores in a system.
|
2022-08-21 20:28:12 -04:00
|
|
|
ifneq ($(parallel),)
|
|
|
|
FUZZ_NUM_PROCESSES := $(parallel)
|
2020-09-23 14:55:08 +02:00
|
|
|
endif
|