meson: rename "fuzzers" suite to "fuzz"

Fuzz tests have all the longest names, so by making this name
shorter, we save three columns of screen real estate.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2023-05-18 17:14:50 +02:00
parent e2e736cbbd
commit ec2c6ac051

View file

@ -4607,7 +4607,7 @@ foreach fuzzer : fuzzers
fuzz_in = tuple[1]
test('@0@_@1@'.format(name, fuzz_in),
exe,
suite : 'fuzzers',
suite : 'fuzz',
args : [fuzz_dir != '' ? project_source_root / fuzz_dir / name / fuzz_in
: fuzz_generated_in_dir / '@0@_@1@'.format(name, fuzz_in)])
endforeach