[meson] See if this fixes bots

This commit is contained in:
Behdad Esfahbod 2025-04-06 02:26:17 -06:00
parent a530672f04
commit 740a103ba1

View file

@ -66,9 +66,10 @@ test('draw-fuzzer', run_fuzzer_tests,
suite: ['fuzzing'],
)
find = find_program('find', required: true)
# Subset fuzzer: feed the fuzzer directly, without run-fuzzer-tests.py
glob = run_command('find', meson.current_source_dir() / 'fonts', '-type', 'f', check:true).stdout().strip().split('\n')
glob += run_command('find', meson.current_source_dir() / '..' / 'subset' / 'data' / 'fonts' , '-type', 'f', check:true).stdout().strip().split('\n')
glob = run_command(find, meson.current_source_dir() / 'fonts', '-type', 'f', check:true).stdout().strip().split('\n')
glob += run_command(find, meson.current_source_dir() / '..' / 'subset' / 'data' / 'fonts' , '-type', 'f', check:true).stdout().strip().split('\n')
# Chunk glob and call runner for each chunk
chunk_size = 64
chunks = []