We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8787305 commit a335fe0Copy full SHA for a335fe0
projects/opus/build.sh
@@ -20,6 +20,7 @@ FUZZERS="opus_encode_fuzzer opus_multistream_decode_fuzzer opus_multistream_enco
20
BUILDS=(floating fixed floating_qext fixed_qext)
21
22
tar xvf $SRC/opus_testvectors.tar.gz
23
+zip -r $SRC/zipped-corpus.zip opus_testvectors/
24
25
if [[ $CFLAGS = *sanitize=memory* ]]; then
26
CFLAGS+=" -D_FORTIFY_SOURCE=0"
@@ -64,6 +65,8 @@ for build in "${BUILDS[@]}"; do
64
65
# fuzzer's name
66
[ -f tests/$fuzzer.options ] \
67
&& cp tests/$fuzzer.options $OUT/${fuzzer}_${build}.options
- zip -r $OUT/${fuzzer}_${build}_seed_corpus.zip opus_testvectors/
68
+ cp $SRC/zipped-corpus.zip $OUT/${fuzzer}_${build}_seed_corpus.zip &
69
done
70
71
+
72
+wait
0 commit comments