Skip to content

Commit 283b79f

Browse files
[gpac] small script changes to facilitate local debug (google#11633)
* use testsuite as submodule * update workdir to work with local source mounts
1 parent ae3cf71 commit 283b79f

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

projects/gpac/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
FROM gcr.io/oss-fuzz-base/base-builder
1818
RUN apt-get update && apt-get install -y build-essential pkg-config libz-dev
19-
RUN git clone https://github.com/gpac/gpac && git clone https://github.com/gpac/testsuite
19+
RUN git clone https://github.com/gpac/gpac && cd gpac && git submodule update --init --remote --recursive
2020

21-
WORKDIR $SRC
2221
COPY build.sh $SRC/
22+
WORKDIR $SRC/gpac

projects/gpac/build.sh

+3-4
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,11 @@
1515
#
1616
################################################################################
1717

18-
cd gpac
1918
./configure --static-build --extra-cflags="${CFLAGS}" --extra-ldflags="${CFLAGS}"
2019
make
2120

2221

23-
fuzzers=$(find $SRC/testsuite/oss-fuzzers -name "fuzz_*.c")
22+
fuzzers=$(find $SRC/gpac/testsuite/oss-fuzzers -name "fuzz_*.c")
2423
for f in $fuzzers; do
2524

2625
fuzzerName=$(basename $f .c)
@@ -32,8 +31,8 @@ for f in $fuzzers; do
3231
-lm -lz -lpthread -lssl -lcrypto -DGPAC_HAVE_CONFIG_H
3332

3433

35-
if [ -d "$SRC/testsuite/oss-fuzzers/${fuzzerName}_corpus" ]; then
36-
zip -j $OUT/${fuzzerName}_seed_corpus.zip $SRC/testsuite/oss-fuzzers/${fuzzerName}_corpus/*
34+
if [ -d "$SRC/gpac/testsuite/oss-fuzzers/${fuzzerName}_corpus" ]; then
35+
zip -j $OUT/${fuzzerName}_seed_corpus.zip $SRC/gpac/testsuite/oss-fuzzers/${fuzzerName}_corpus/*
3736
fi
3837

3938
done

0 commit comments

Comments
 (0)