mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-11 15:37:27 +00:00
[fuzzer] Adds code generation target. (#8795)
* adds code generation fuzzer target. * add buffer verification * add table verification in codegen fuzzer --------- Co-authored-by: Björn Harrtell <bjornharrtell@users.noreply.github.com>
This commit is contained in:
14
tests/fuzzer/seed_codegen/rpc_test
Normal file
14
tests/fuzzer/seed_codegen/rpc_test
Normal file
@@ -0,0 +1,14 @@
|
||||
table Request {
|
||||
id:int;
|
||||
message:string;
|
||||
}
|
||||
|
||||
table Response {
|
||||
result:string;
|
||||
}
|
||||
|
||||
rpc_service MyService {
|
||||
DoSomething(Request):Response;
|
||||
}
|
||||
|
||||
root_type Request;
|
||||
Reference in New Issue
Block a user