dynarmic/externals/fmt/test/fuzzing
Merry 7a7557f70f externals: Update fmt to 10.1.1
Merge commit '091ca2aa033bf9bf9bfecdc55140d2cd15ed2ccb'
2023-10-08 08:55:04 +01:00
..
.gitignore externals: Update fmt to 6.2.0 2020-04-23 21:03:34 +01:00
build.sh externals: Update fmt to 8.1.1 2022-02-15 11:15:34 +00:00
chrono-duration.cc externals: Update fmt to 8.1.1 2022-02-15 11:15:34 +00:00
chrono-timepoint.cc externals: Update fmt to 8.1.1 2022-02-15 11:15:34 +00:00
CMakeLists.txt externals: Update fmt to 10.1.1 2023-10-08 08:55:04 +01:00
float.cc externals: Update fmt to 8.1.1 2022-02-15 11:15:34 +00:00
fuzzer-common.h externals: Update fmt to 8.1.1 2022-02-15 11:15:34 +00:00
main.cc externals: Update fmt to 8.0.0 2021-06-23 05:04:53 -04:00
named-arg.cc externals: Update fmt to 8.1.1 2022-02-15 11:15:34 +00:00
one-arg.cc externals: Update fmt to 9.0.0 2022-07-26 10:51:24 +01:00
README.md externals: Update fmt to 8.0.0 2021-06-23 05:04:53 -04:00
two-args.cc externals: Update fmt to 9.0.0 2022-07-26 10:51:24 +01:00

Running the fuzzers locally

There is a helper script to build the fuzzers, which has only been tested on Debian and Ubuntu linux so far. There should be no problems fuzzing on Windows (using clang>=8) or on Mac, but the script will probably not work out of the box.

Something along

mkdir build
cd build
export CXX=clang++
export CXXFLAGS="-fsanitize=fuzzer-no-link -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION= -g"
cmake .. -DFMT_SAFE_DURATION_CAST=On -DFMT_FUZZ=On -DFMT_FUZZ_LINKMAIN=Off -DFMT_FUZZ_LDFLAGS="-fsanitize=fuzzer"
cmake --build .

should work to build the fuzzers for all platforms which clang supports.

Execute a fuzzer with for instance

cd build
export UBSAN_OPTIONS=halt_on_error=1
mkdir out_chrono
bin/fuzzer_chrono_duration out_chrono