9 Commits

Author SHA1 Message Date
e99caed709 test when something is found
Some checks failed
Gentoo Utils / build-oci-image (push) Successful in 7s
Gentoo Utils / grep (push) Failing after 3s
Gentoo Utils / check-format (push) Successful in 8s
Gentoo Utils / docs (push) Successful in 12s
Gentoo Utils / build (push) Successful in 20s
Gentoo Utils / test (push) Successful in 27s
Gentoo Utils / fuzz (push) Failing after 41s
2025-12-14 21:30:46 -06:00
6d2fe7dc2a fix git grep
Some checks failed
Gentoo Utils / build-oci-image (push) Successful in 7s
Gentoo Utils / grep (push) Successful in 3s
Gentoo Utils / check-format (push) Successful in 8s
Gentoo Utils / docs (push) Successful in 12s
Gentoo Utils / build (push) Successful in 19s
Gentoo Utils / test (push) Successful in 28s
Gentoo Utils / fuzz (push) Has been cancelled
2025-12-14 21:29:39 -06:00
61edc25d50 DONT FORK!
Some checks failed
Gentoo Utils / build-oci-image (push) Successful in 6s
Gentoo Utils / grep (push) Failing after 3s
Gentoo Utils / check-format (push) Successful in 8s
Gentoo Utils / docs (push) Successful in 12s
Gentoo Utils / build (push) Successful in 19s
Gentoo Utils / test (push) Successful in 25s
Gentoo Utils / fuzz (push) Failing after 2m15s
2025-12-14 20:09:26 -06:00
f0d7ec56b3 test
Some checks failed
Gentoo Utils / build-oci-image (push) Successful in 8s
Gentoo Utils / grep (push) Failing after 3s
Gentoo Utils / check-format (push) Successful in 7s
Gentoo Utils / docs (push) Successful in 13s
Gentoo Utils / build (push) Successful in 21s
Gentoo Utils / test (push) Successful in 26s
Gentoo Utils / fuzz (push) Successful in 5m58s
2025-12-14 19:58:58 -06:00
e34b7546a4 test 2025-12-14 19:58:58 -06:00
e12212cd2c ci: fix jobs not exiting on failure 2025-12-14 19:58:58 -06:00
104cb98d9e ci: build: remove debugging echos
ci: build: remove redundant source
2025-12-14 19:58:58 -06:00
7f59bb7c02 ci: add fuzz job
ci: fuzz: add timeout

ci: fuzz: add fuzzer timeout
2025-12-14 19:58:58 -06:00
6c0b368f6b scripts: add fuzzer helper script 2025-12-14 19:58:58 -06:00
2 changed files with 3 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ on: [push]
defaults:
run:
shell: bash -el -o pipefail {0}
shell: bash -el {0}
# fixes rare instances of git commands failing because TERM isnt set
env:
@@ -198,3 +198,4 @@ jobs:
# negate git grep ret code because 1 means no findings
run: |
git grep -E 'todo!|dbg!' -- '*.rs' && exit 1 || exit 0

View File

@@ -17,6 +17,7 @@ pub unsafe extern "C" fn LLVMFuzzerTestOneInput(input: *const u8, len: usize) ->
return -1;
}
// todo!()
let stdin = io::stdin();
let mut stdout = io::stdout();
let mut buffer = String::new();