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

@@ -22,4 +22,5 @@ meson test -C ${build} || exit $?
rm -rf ${build} rm -rf ${build}
meson format --recursive --check-only || exit $? # hack to make sure we use the system meson, since meson format from git is broken
/usr/bin/meson format --recursive --check-only || exit $?

View File

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