mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-24 15:02:20 +01:00
Include color when building fuzz targets in CI
This commit is contained in:
parent
764e6e71e3
commit
ecb94689bf
1 changed files with 3 additions and 3 deletions
|
@ -12,9 +12,9 @@ rm *_target.rs
|
|||
[ "$(git diff)" != "" ] && exit 1
|
||||
popd
|
||||
|
||||
cargo install --force honggfuzz
|
||||
cargo install --color always --force honggfuzz
|
||||
sed -i 's/lto = true//' Cargo.toml
|
||||
HFUZZ_BUILD_ARGS="--features honggfuzz_fuzz" cargo hfuzz build
|
||||
HFUZZ_BUILD_ARGS="--features honggfuzz_fuzz" cargo --color always hfuzz build
|
||||
for TARGET in src/bin/*.rs; do
|
||||
FILENAME=$(basename $TARGET)
|
||||
FILE="${FILENAME%.*}"
|
||||
|
@ -27,7 +27,7 @@ for TARGET in src/bin/*.rs; do
|
|||
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N1000000"
|
||||
fi
|
||||
export HFUZZ_RUN_ARGS
|
||||
HFUZZ_BUILD_ARGS="--features honggfuzz_fuzz" cargo hfuzz run $FILE
|
||||
HFUZZ_BUILD_ARGS="--features honggfuzz_fuzz" cargo --color always hfuzz run $FILE
|
||||
if [ -f hfuzz_workspace/$FILE/HONGGFUZZ.REPORT.TXT ]; then
|
||||
cat hfuzz_workspace/$FILE/HONGGFUZZ.REPORT.TXT
|
||||
for CASE in hfuzz_workspace/$FILE/SIG*; do
|
||||
|
|
Loading…
Add table
Reference in a new issue