13 Commits

Author SHA1 Message Date
a4e73069f4 read arch.list
All checks were successful
Gentoo Utils / check-format (push) Successful in 18s
Gentoo Utils / build-oci-image (push) Successful in 8s
Gentoo Utils / docs (push) Successful in 23s
Gentoo Utils / build (push) Successful in 35s
Gentoo Utils / test (push) Successful in 42s
2025-12-14 01:37:49 +00:00
870800c985 read global package.mask 2025-12-14 01:37:49 +00:00
985f033276 add mockrepo tests 2025-12-14 01:37:49 +00:00
a09241dc89 read repo_name when opening repos 2025-12-14 01:37:49 +00:00
682cfdac9f default to Eapi 0 if no eapi file exists 2025-12-14 01:37:49 +00:00
84cc87e6e4 add docs to profile module 2025-12-14 01:37:49 +00:00
467ffd051a read deprecated file in profiles 2025-12-14 01:37:49 +00:00
7c18c9db14 read eapi file in profiles 2025-12-14 01:37:49 +00:00
17a27cfdad add profile related source files to sources variable 2025-12-14 01:37:49 +00:00
ccac5e7f4e impl profile evaluation 2025-12-14 01:37:49 +00:00
90d67e3004 give fuzzer corpuses unique names
All checks were successful
Gentoo Utils / build-oci-image (push) Successful in 50s
Gentoo Utils / check-format (push) Successful in 14s
Gentoo Utils / docs (push) Successful in 22s
Gentoo Utils / build (push) Successful in 47s
Gentoo Utils / test (push) Successful in 39s
2025-12-14 01:18:39 +00:00
5c293ccbc9 add alias targets for fuzzers 2025-12-14 01:12:44 +00:00
185bf01b9e prefix atom fuzzer static library targets with "atom" 2025-12-14 01:10:05 +00:00
2 changed files with 10 additions and 6 deletions

View File

@@ -7,12 +7,12 @@ gencorpus = executable(
corpus = custom_target(
'atom_parser_corpus',
output: 'corpus',
command: [gencorpus, 'corpus'],
output: 'atom_parser_fuzzer_corpus',
command: [gencorpus, 'atom_parser_fuzzer_corpus'],
)
fuzz_rs = static_library(
'parser_fuzzer',
'atom_parser_fuzzer',
'fuzz.rs',
rust_abi: 'c',
rust_args: [
@@ -28,3 +28,5 @@ fuzz = executable(
link_args: ['-fsanitize=fuzzer'],
link_with: [fuzz_rs],
)
alias_target('atom_parser_fuzzer', [corpus, fuzz])

View File

@@ -7,12 +7,12 @@ gencorpus = executable(
corpus = custom_target(
'atom_vercmp_corpus',
output: 'corpus',
command: [gencorpus, 'corpus'],
output: 'atom_vercmp_fuzzer_corpus',
command: [gencorpus, 'atom_vercmp_fuzzer_corpus'],
)
fuzz_rs = static_library(
'vercmp_fuzzer',
'atom_vercmp_fuzzer',
'fuzz.rs',
rust_abi: 'c',
rust_args: [
@@ -29,3 +29,5 @@ fuzz = executable(
link_args: ['-fsanitize=fuzzer'],
link_with: [fuzz_rs],
)
alias_target('atom_vercmp_fuzzer', [corpus, fuzz])