From b3f0fdd79d60858550653d3b9a5e089f5b35509c Mon Sep 17 00:00:00 2001 From: Mina Farid Date: Thu, 9 Aug 2018 15:36:07 -0400 Subject: [PATCH] [firestore] move fuzz targets build location (#1701) --- projects/firestore/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/firestore/build.sh b/projects/firestore/build.sh index fab0899aa..e422398ac 100755 --- a/projects/firestore/build.sh +++ b/projects/firestore/build.sh @@ -35,7 +35,7 @@ $WORK/cmake-3.12.0-Linux-x86_64/bin/cmake -DFUZZING=ON .. make -j$(nproc) # Copy fuzzing targets, dictionaries, and zipped corpora to $OUT. -FUZZERS_DIR=Firestore/core/test/firebase/firestore/fuzzing +FUZZERS_DIR=Firestore/fuzzing find ${FUZZERS_DIR} -name '*_fuzzer' -exec cp -v '{}' $OUT ';' find ${FUZZERS_DIR} -name '*_fuzzer.dict' -exec cp -v '{}' $OUT ';' find ${FUZZERS_DIR} -name "*_fuzzer_seed_corpus" -type d -execdir zip -r ${OUT}/{}.zip {} ';'