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
1,174 changes: 1,072 additions & 102 deletions domain_tests/arbitrary_domains_flatbuffers_test.cc

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion fuzztest/internal/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -616,8 +616,13 @@ cc_test(

flatbuffer_library_public(
name = "test_flatbuffers_fbs",
srcs = ["test_flatbuffers.fbs"],
srcs = [
"test_flatbuffers.fbs",
"test_flatbuffers_64bits.fbs",
],
outs = [
"test_flatbuffers_64bits_bfbs_generated.h",
"test_flatbuffers_64bits_generated.h",
"test_flatbuffers_bfbs_generated.h",
"test_flatbuffers_generated.h",
],
Expand Down
1 change: 1 addition & 0 deletions fuzztest/internal/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,7 @@ if (FUZZTEST_BUILD_FLATBUFFERS)
test_flatbuffers_headers
SCHEMAS
"test_flatbuffers.fbs"
"test_flatbuffers_64bits.fbs"
FLAGS
--bfbs-gen-embed --gen-name-strings
TESTONLY
Expand Down
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
Loading
Loading