diff options
author | iximeow <me@iximeow.net> | 2024-06-24 14:06:22 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2024-06-24 14:27:25 -0700 |
commit | dd8bd5ce0772b08c271205508e48e98ef1c58ea8 (patch) | |
tree | 946630c89a554843dd33a9988a36bb43db48d539 /fuzz/Cargo.toml | |
parent | ddde47c4c8c2058379b448894bebb3e099ea0585 (diff) |
justify the current max instruction length
this is also checked by a new fuzz target
Diffstat (limited to 'fuzz/Cargo.toml')
-rw-r--r-- | fuzz/Cargo.toml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 2203dc3..a1f871e 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -36,6 +36,12 @@ test = false doc = false [[bin]] +name = "instruction_text_buffer_size_ok" +path = "fuzz_targets/instruction_text_buffer_size_ok.rs" +test = false +doc = false + +[[bin]] name = "display_c_does_not_panic" path = "fuzz_targets/display_c_does_not_panic.rs" test = false |