Test handling of untracked files

This commit is contained in:
Jonathan Metzman 2021-11-30 11:43:54 -08:00
parent 37f213eb44
commit b96b60c7a8
2 changed files with 2 additions and 2 deletions

View File

@ -19,4 +19,5 @@ RUN apt-get update && apt-get install -y make
RUN git clone https://github.com/jonathanmetzman/cifuzz-example.git
WORKDIR cifuzz-example
RUN echo "hi" > untracked-file
COPY build.sh $SRC/

View File

@ -15,8 +15,7 @@
#
################################################################################
echo $PWD
ls .
cat untracked-file # Ensure CIFuzz doesn't junk untracked files.
make clean # Not strictly necessary, since we are building in a fresh dir.
make -j$(nproc) all # Build the fuzz targets.
# make -j$(nproc) check # Sanity check, not strictly required, but nice to have.