aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-08-05 15:22:59 -0700
committerGitHub <noreply@github.com>2021-08-05 22:22:59 +0000
commit866f387c7a583b51cc39c11f6136ff1efeb12066 (patch)
tree22a12df31185544c62b2226c70c41a4ff19adfcb
parentfcca81b36f858ef8791f9a0a434d9b67057a9814 (diff)
downloadoss-fuzz-866f387c7a583b51cc39c11f6136ff1efeb12066.tar.gz
[cifuzz] Speculative fix for issue with seed corpus/backup corpus (#6175)
This should fix #6173
-rwxr-xr-xinfra/base-images/base-runner/run_fuzzer2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/base-images/base-runner/run_fuzzer b/infra/base-images/base-runner/run_fuzzer
index f53aed60a..cda877cf1 100755
--- a/infra/base-images/base-runner/run_fuzzer
+++ b/infra/base-images/base-runner/run_fuzzer
@@ -76,7 +76,7 @@ SEED_CORPUS="${FUZZER}_seed_corpus.zip"
if [ -f $SEED_CORPUS ] && [ -z ${SKIP_SEED_CORPUS:-} ]; then
echo "Using seed corpus: $SEED_CORPUS"
- unzip -d ${CORPUS_DIR}/ $SEED_CORPUS > /dev/null
+ unzip -o -d ${CORPUS_DIR}/ $SEED_CORPUS > /dev/null
fi
OPTIONS_FILE="${FUZZER}.options"