Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tests/fuzzing/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
FROM quay.io/fedora/fedora:latest

RUN dnf install -y python3 automake autoconf libtool make git pkg-config clang \
glibc-static libunwind-devel binutils-devel xz-devel libatomic json-c-devel
glibc-static libunwind-devel binutils-devel xz-devel libatomic json-c-devel \
libzstd-devel

RUN git clone --depth 1 https://github.com/google/honggfuzz.git && cd honggfuzz && make -j $(nproc) && make install PREFIX=/usr
RUN git clone --depth 1 https://github.com/google/honggfuzz.git && cd honggfuzz && sed -i 's/LDFLAGS\s*+=/LDFLAGS += -lzstd/' Makefile && make -j $(nproc) && make install PREFIX=/usr

COPY run-tests.sh /usr/local/bin

Expand Down