Skip to content
Open
Show file tree
Hide file tree
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
7 changes: 2 additions & 5 deletions fuzz/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ vbk_define(VBK_FUZZING_UNSAFE_FOR_PRODUCTION)
# WEIGHT defines how "important" fuzzer is. More important fuzzers will run longer in CI.
set(TOTAL_WEIGHT 27)

add_subdirectory(e2e)

add_fuzz(address_deserialization_fuzz
SOURCES address_deserialization_fuzz.cpp
ARGS
Expand All @@ -26,9 +24,7 @@ add_fuzz(value_sorted_map_fuzz

add_fuzz(e2e_fuzz
SOURCES
e2e/fuzzer.cpp
e2e/tree.cpp
e2e/tree.hpp
e2e_fuzz.cpp
ARGS
# fail if malloc(>10MB) is called
-malloc_limit_mb=10
Expand All @@ -38,3 +34,4 @@ add_fuzz(e2e_fuzz
-max_len=100000
WEIGHT 20
)
target_link_libraries(e2e_fuzz PUBLIC e2e_utils)
Empty file removed fuzz/e2e/CMakeLists.txt
Empty file.
334 changes: 0 additions & 334 deletions fuzz/e2e/fuzzer.cpp

This file was deleted.

26 changes: 0 additions & 26 deletions fuzz/e2e/rand.hpp

This file was deleted.

Loading