1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 16:57:16 +01:00
SqMod/vendor/Fmt/test/fuzzing
Sandu Liviu Catalin 9298065cef Update WIP discord and some vendors.
CPR has features disabled and PCRE is fully disabled until updated to new code.
2023-08-05 21:31:33 +03:00
..
build.sh Update formatting library. 2022-03-16 22:36:44 +02:00
chrono-duration.cc Update formatting library. 2022-03-16 22:36:44 +02:00
chrono-timepoint.cc Update formatting library. 2022-03-16 22:36:44 +02:00
CMakeLists.txt Update WIP discord and some vendors. 2023-08-05 21:31:33 +03:00
float.cc Update formatting library. 2022-03-16 22:36:44 +02:00
fuzzer-common.h Update formatting library. 2022-03-16 22:36:44 +02:00
main.cc Use default cpp fmt build script. 2021-07-03 14:08:25 +03:00
named-arg.cc Update formatting library. 2022-03-16 22:36:44 +02:00
one-arg.cc Update WIP discord and some vendors. 2023-08-05 21:31:33 +03:00
README.md Use default cpp fmt build script. 2021-07-03 14:08:25 +03:00
two-args.cc Update WIP discord and some vendors. 2023-08-05 21:31:33 +03: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