infra: bump fuzz introspector (#11535)

Signed-off-by: David Korczynski <david@adalogics.com>
This commit is contained in:
DavidKorczynski 2024-01-25 05:58:24 +00:00 committed by GitHub
parent 8a526848e2
commit 296dc88841
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -189,6 +189,7 @@ if [ "$SANITIZER" = "introspector" ]; then
export CXXFLAGS="$CXXFLAGS -g" export CXXFLAGS="$CXXFLAGS -g"
export FI_BRANCH_PROFILE=1 export FI_BRANCH_PROFILE=1
export FUZZ_INTROSPECTOR=1 export FUZZ_INTROSPECTOR=1
export FUZZ_INTROSPECTOR_AUTO_FUZZ=1
# Move ar and ranlib # Move ar and ranlib
mv /usr/bin/ar /usr/bin/old-ar mv /usr/bin/ar /usr/bin/old-ar
@ -270,6 +271,8 @@ if [ "$SANITIZER" = "introspector" ]; then
mkdir -p $SRC/inspector mkdir -p $SRC/inspector
find $SRC/ -name "fuzzerLogFile-*.data" -exec cp {} $SRC/inspector/ \; find $SRC/ -name "fuzzerLogFile-*.data" -exec cp {} $SRC/inspector/ \;
find $SRC/ -name "fuzzerLogFile-*.data.yaml" -exec cp {} $SRC/inspector/ \; find $SRC/ -name "fuzzerLogFile-*.data.yaml" -exec cp {} $SRC/inspector/ \;
find $SRC/ -name "fuzzerLogFile-*.data.debug_info" -exec cp {} $SRC/inspector/ \;
find $SRC/ -name "allFunctionsWithMain-*.yaml" -exec cp {} $SRC/inspector/ \;
# Move coverage report. # Move coverage report.
if [ -d "$OUT/textcov_reports" ] if [ -d "$OUT/textcov_reports" ]

View File

@ -36,7 +36,7 @@ RUN apt-get update && apt-get install -y wget sudo && \
RUN apt-get update && apt-get install -y git && \ RUN apt-get update && apt-get install -y git && \
git clone https://github.com/ossf/fuzz-introspector.git fuzz-introspector && \ git clone https://github.com/ossf/fuzz-introspector.git fuzz-introspector && \
cd fuzz-introspector && \ cd fuzz-introspector && \
git checkout 54ade08f03b3144a67fa9da704b54093b36eabde && \ git checkout 0286c8f03187901cafb768cd64a6da3eb71784a9 && \
git submodule init && \ git submodule init && \
git submodule update && \ git submodule update && \
apt-get autoremove --purge -y git && \ apt-get autoremove --purge -y git && \