Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
disable chrono fuzzing for now
Browse files Browse the repository at this point in the history
it triggers integer overflow and is not trivial to solve.
pauldreik committed May 4, 2019
1 parent ff17322 commit a574b21
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion fuzzing/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -11,7 +11,13 @@ option(FMT_FUZZ_LINKMAIN "enables the reproduce mode, instead of libFuzzer" On)
option(FMT_FUZZ_LDFLAGS "LDFLAGS for the fuzz targets" "")

#find all fuzzers.
file(GLOB SOURCES "*.cpp")
set(SOURCES
#chrono_duration.cpp # this triggers integer overflows I yet not know how to fix
named_arg.cpp
one_arg.cpp
sprintf.cpp
two_args.cpp
)

if(FMT_FUZZ_LINKMAIN)
add_definitions(-DIMPLEMENT_MAIN=1)

0 comments on commit a574b21

Please sign in to comment.