From 740a103ba1fc83b1c4a2aa3471ef33e415a8bde6 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 6 Apr 2025 02:26:17 -0600 Subject: [PATCH] [meson] See if this fixes bots --- test/fuzzing/meson.build | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/fuzzing/meson.build b/test/fuzzing/meson.build index c344566b6..24ba9d9d4 100644 --- a/test/fuzzing/meson.build +++ b/test/fuzzing/meson.build @@ -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 = []