mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 21:15:06 +00:00
[tests/fuzzing] Use the correct dirs for subset and repacker fuzzers
This commit is contained in:
parent
c404d8fc70
commit
7ba3efa5c6
2 changed files with 11 additions and 8 deletions
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue