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
2 changes: 2 additions & 0 deletions domain_tests/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,13 @@ cc_test(
deps = [
":domain_testing",
"@abseil-cpp//absl/container:flat_hash_map",
"@abseil-cpp//absl/log:check",
"@abseil-cpp//absl/random",
"@abseil-cpp//absl/status",
"@com_google_fuzztest//fuzztest:domain",
"@com_google_fuzztest//fuzztest:flatbuffers",
"@com_google_fuzztest//fuzztest/internal:meta",
"@com_google_fuzztest//fuzztest/internal:serialization",
"@com_google_fuzztest//fuzztest/internal:test_flatbuffers_cc_fbs",
"@flatbuffers//:runtime_cc",
"@googletest//:gtest_main",
Expand Down
779 changes: 705 additions & 74 deletions domain_tests/arbitrary_domains_flatbuffers_test.cc

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion fuzztest/internal/domains/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,9 @@ cc_library(
hdrs = ["flatbuffers_domain_impl.h"],
deps = [
":core_domains_impl",
"@abseil-cpp//absl/algorithm:container",
"@abseil-cpp//absl/base:core_headers",
"@abseil-cpp//absl/base:nullability",
"@abseil-cpp//absl/container:btree",
"@abseil-cpp//absl/container:flat_hash_map",
"@abseil-cpp//absl/container:flat_hash_set",
"@abseil-cpp//absl/random:bit_gen_ref",
Expand All @@ -204,6 +204,7 @@ cc_library(
"@com_google_fuzztest//fuzztest/internal:meta",
"@com_google_fuzztest//fuzztest/internal:serialization",
"@com_google_fuzztest//fuzztest/internal:status",
"@com_google_fuzztest//fuzztest/internal:type_support",
"@flatbuffers//:runtime_cc",
],
)
Expand Down
1 change: 1 addition & 0 deletions fuzztest/internal/domains/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ fuzztest_cc_library(
fuzztest::core_domains_impl
absl::core_headers
absl::no_destructor
absl::btree
absl::flat_hash_map
absl::flat_hash_set
absl::random_random
Expand Down
Loading
Loading