From 58baff4f4a8c7fefa4b4238f557bc618d4258d4e Mon Sep 17 00:00:00 2001 From: Tomasz Michalak Date: Wed, 15 May 2019 12:14:52 +0200 Subject: [PATCH 1/3] fuzzers: Add clean_piplists target Signed-off-by: Tomasz Michalak --- fuzzers/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fuzzers/Makefile b/fuzzers/Makefile index 9f5d8d47..b4d5401a 100644 --- a/fuzzers/Makefile +++ b/fuzzers/Makefile @@ -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 From 3f33176cfb924300e9ebd575bc938bb1b5d2785a Mon Sep 17 00:00:00 2001 From: Tomasz Michalak Date: Wed, 15 May 2019 12:16:23 +0200 Subject: [PATCH 2/3] kokoro: Cleanup piplists along with fuzzers Signed-off-by: Tomasz Michalak --- .github/kokoro/db-full.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/kokoro/db-full.sh b/.github/kokoro/db-full.sh index 2a670fd7..31c097b4 100755 --- a/.github/kokoro/db-full.sh +++ b/.github/kokoro/db-full.sh @@ -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 "----------------------------------------" From 11f5a37a0664722e2099528edc2997d2e0252292 Mon Sep 17 00:00:00 2001 From: Tomasz Michalak Date: Mon, 20 May 2019 11:30:55 +0200 Subject: [PATCH 3/3] 050-pip-seed: Increase specimen count Signed-off-by: Tomasz Michalak --- fuzzers/050-pip-seed/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzzers/050-pip-seed/Makefile b/fuzzers/050-pip-seed/Makefile index 2dc96edd..a40ea42e 100644 --- a/fuzzers/050-pip-seed/Makefile +++ b/fuzzers/050-pip-seed/Makefile @@ -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