Skip to content

Commit

Permalink
infra: bump fuzz introspector (#11535)
Browse files Browse the repository at this point in the history
Signed-off-by: David Korczynski <[email protected]>
  • Loading branch information
DavidKorczynski authored Jan 25, 2024
1 parent 8a52684 commit 296dc88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions infra/base-images/base-builder/compile
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ if [ "$SANITIZER" = "introspector" ]; then
export CXXFLAGS="$CXXFLAGS -g"
export FI_BRANCH_PROFILE=1
export FUZZ_INTROSPECTOR=1
export FUZZ_INTROSPECTOR_AUTO_FUZZ=1

# Move ar and ranlib
mv /usr/bin/ar /usr/bin/old-ar
Expand Down Expand Up @@ -270,6 +271,8 @@ if [ "$SANITIZER" = "introspector" ]; then
mkdir -p $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.debug_info" -exec cp {} $SRC/inspector/ \;
find $SRC/ -name "allFunctionsWithMain-*.yaml" -exec cp {} $SRC/inspector/ \;

# Move coverage report.
if [ -d "$OUT/textcov_reports" ]
Expand Down
2 changes: 1 addition & 1 deletion infra/base-images/base-clang/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN apt-get update && apt-get install -y wget sudo && \
RUN apt-get update && apt-get install -y git && \
git clone https://github.com/ossf/fuzz-introspector.git fuzz-introspector && \
cd fuzz-introspector && \
git checkout 54ade08f03b3144a67fa9da704b54093b36eabde && \
git checkout 0286c8f03187901cafb768cd64a6da3eb71784a9 && \
git submodule init && \
git submodule update && \
apt-get autoremove --purge -y git && \
Expand Down

0 comments on commit 296dc88

Please sign in to comment.