diff options
| author | John Turner <jturner.usa@gmail.com> | 2025-12-14 01:12:44 +0000 |
|---|---|---|
| committer | John Turner <jturner.usa@gmail.com> | 2025-12-14 01:12:44 +0000 |
| commit | 5c293ccbc9571a16080549149813b1c5b4d507b4 (patch) | |
| tree | 734db3709970d05bd647771089b2983957c5b4dd | |
| parent | 185bf01b9ec1e7064e959f5bdc3a2b5c1b1c5d1e (diff) | |
| download | gentoo-utils-5c293ccbc9571a16080549149813b1c5b4d507b4.tar.gz | |
add alias targets for fuzzers
| -rw-r--r-- | fuzz/atom/parser/meson.build | 2 | ||||
| -rw-r--r-- | fuzz/atom/vercmp/meson.build | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/fuzz/atom/parser/meson.build b/fuzz/atom/parser/meson.build index d024b45..f87cb0c 100644 --- a/fuzz/atom/parser/meson.build +++ b/fuzz/atom/parser/meson.build @@ -28,3 +28,5 @@ fuzz = executable( link_args: ['-fsanitize=fuzzer'], link_with: [fuzz_rs], ) + +alias_target('atom_parser_fuzzer', [corpus, fuzz]) diff --git a/fuzz/atom/vercmp/meson.build b/fuzz/atom/vercmp/meson.build index 47437a9..e6ccd6d 100644 --- a/fuzz/atom/vercmp/meson.build +++ b/fuzz/atom/vercmp/meson.build @@ -29,3 +29,5 @@ fuzz = executable( link_args: ['-fsanitize=fuzzer'], link_with: [fuzz_rs], ) + +alias_target('atom_vercmp_fuzzer', [corpus, fuzz]) |
