summaryrefslogtreecommitdiff
path: root/fuzz/meson.build
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-11-16 22:22:12 +0000
committerJohn Turner <jturner.usa@gmail.com>2025-11-16 22:22:12 +0000
commit803f727082979544e6401fb52f528879490e517b (patch)
tree3e2f522297c8d8af9cdee243d5340231ca06be80 /fuzz/meson.build
parentd04d2d088735a52e272e52d9eeae832ca4c6854a (diff)
downloadgentoo-utils-fuzz.tar.gz
fixupfuzz
Diffstat (limited to 'fuzz/meson.build')
-rw-r--r--fuzz/meson.build6
1 files changed, 1 insertions, 5 deletions
diff --git a/fuzz/meson.build b/fuzz/meson.build
index d6809f6..c7652aa 100644
--- a/fuzz/meson.build
+++ b/fuzz/meson.build
@@ -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)