mirror of https://github.com/google/oss-fuzz.git
infra: bump fuzz introspector (#11535)
Signed-off-by: David Korczynski <david@adalogics.com>
This commit is contained in:
parent
8a526848e2
commit
296dc88841
|
@ -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
|
||||
|
@ -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" ]
|
||||
|
|
|
@ -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 && \
|
||||
|
|
Loading…
Reference in New Issue