blob: 0ac681caed29fa209d95e0f004377112076e917f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash -eu
autoreconf -i
./configure --enable-lib-only
make -j$(nproc)
$CXX $CXXFLAGS -std=c++17 -Ilib/includes -Ilib -I. -DHAVE_CONFIG_H \
fuzz/decode_frame.cc -o $OUT/decode_frame \
$LIB_FUZZING_ENGINE lib/.libs/libngtcp2.a
$CXX $CXXFLAGS -std=c++17 -Ilib/includes -Ilib -I. -DHAVE_CONFIG_H \
fuzz/ksl.cc -o $OUT/ksl \
$LIB_FUZZING_ENGINE lib/.libs/libngtcp2.a
zip -j $OUT/decode_frame_seed_corpus.zip fuzz/corpus/decode_frame/*
zip -j $OUT/ksl_seed_corpus.zip fuzz/corpus/ksl/*
|