This commit is contained in:
John Turner
2025-11-16 22:22:12 +00:00
parent d04d2d0887
commit 803f727082
2 changed files with 3 additions and 6 deletions

View File

@@ -35,10 +35,6 @@ fuzz_rs = static_library(
link_with: [gentoo_utils],
)
fuzz = executable(
'fuzz',
link_args: ['-fsanitize=fuzzer'],
link_with: [fuzz_rs],
)
fuzz = executable('fuzz', link_args: ['-fsanitize=fuzzer'], link_with: [fuzz_rs])
test('fuzz', fuzz, args: [corpus_directory], depends: [corpus], timeout: 0)