mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 11:07:56 +00:00
631a5db536
* Move CI scripts and update references * Update paths in .gitlab-ci.yml * Removed outdated entries from CODEOWNERS
14 lines
273 B
Bash
Executable File
14 lines
273 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
timeout --signal INT 5h cargo hfuzz run $1
|
|
status=$?
|
|
|
|
if [ $status -ne 124 ]; then
|
|
echo "Found a panic!"
|
|
# TODO: provide Minimal Reproducible Input
|
|
# TODO: message on Matrix
|
|
exit 1
|
|
else
|
|
echo "Didn't find any problem in 5 hours of fuzzing"
|
|
fi
|