[tests/fuzzing] Use the correct dirs for subset and repacker fuzzers

This commit is contained in:
Khaled Hosny 2025-02-09 18:42:45 +02:00
parent c404d8fc70
commit 7ba3efa5c6
2 changed files with 11 additions and 8 deletions

View file

@ -49,6 +49,7 @@ test('subset-fuzzer', find_program('run-fuzzer-tests.py'),
args: [
hb_subset_fuzzer_exe,
meson.current_source_dir() / 'fonts',
meson.current_source_dir() / '..' / 'subset' / 'data' / 'fonts',
],
workdir: meson.current_build_dir() / '..' / '..',
priority: 1,
@ -58,7 +59,7 @@ test('subset-fuzzer', find_program('run-fuzzer-tests.py'),
test('repacker-fuzzer', find_program('run-fuzzer-tests.py'),
args: [
hb_repacker_fuzzer_exe,
meson.current_source_dir() / 'fonts',
meson.current_source_dir() / 'graphs',
],
workdir: meson.current_build_dir() / '..' / '..',
priority: 1,

View file

@ -31,18 +31,20 @@ def main():
assert len(sys.argv) > 2, "Please provide fuzzer binary and fonts directory paths."
fuzzer = pathlib.Path(sys.argv[1])
fonts_dir = pathlib.Path(sys.argv[2])
assert fuzzer.is_file(), f"Fuzzer binary not found: {fuzzer}"
assert fonts_dir.is_dir(), f"Fonts directory not found: {fonts_dir}"
print("Using fuzzer:", fuzzer)
# Gather all files from fonts/
files_to_test = [str(f) for f in fonts_dir.iterdir() if f.is_file()]
# Gather all test files
files_to_test = []
for fonts_dir in sys.argv[2:]:
fonts_dir = pathlib.Path(fonts_dir)
assert fonts_dir.is_dir(), f"Fonts directory not found: {fonts_dir}"
test_files = [str(f) for f in fonts_dir.iterdir() if f.is_file()]
assert test_files, f"No files found in {fonts_dir}"
files_to_test += test_files
if not files_to_test:
print("No files found in", fonts_dir)
print("No test files found")
sys.exit(0)
fails = 0