mirror of https://github.com/openXC7/prjxray.git
Merge pull request #837 from antmicro/prjxray_stabilization_041_clk_hrow_pips
Add target to cleanup all piplists
This commit is contained in:
commit
d16a0a1f4a
|
|
@ -176,5 +176,6 @@ echo "----------------------------------------"
|
|||
echo
|
||||
echo "Cleaning up so CI doesn't save all the excess data."
|
||||
make clean_fuzzers
|
||||
make clean_piplists
|
||||
)
|
||||
echo "----------------------------------------"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ ifeq ($(QUICK),Y)
|
|||
N ?= 1
|
||||
SEGMATCH_FLAGS=
|
||||
else
|
||||
N ?= 48
|
||||
N ?= 60
|
||||
# Do relatively large batch to keep parallelism high
|
||||
# LCM between 12 (CPUs on my system) and 16, a common CPU count
|
||||
SEGMATCH_FLAGS=-m 15 -M 45
|
||||
|
|
|
|||
|
|
@ -11,11 +11,14 @@ FUZZONLY=N
|
|||
BITONLY=N
|
||||
|
||||
all:
|
||||
clean: clean_fuzzers clean_logs clean_locks
|
||||
clean: clean_fuzzers clean_piplists clean_logs clean_locks
|
||||
|
||||
clean_locks:
|
||||
rm -rf /tmp/segbits_*.db.lock
|
||||
|
||||
clean_piplists:
|
||||
rm -rf $(XRAY_FUZZERS_DIR)/piplist/build
|
||||
|
||||
define fuzzer
|
||||
|
||||
# $(1) - Fuzzer name/directory
|
||||
|
|
|
|||
Loading…
Reference in New Issue