diff --git a/README.md b/README.md index 96b26a8..45716fd 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ [![Crates.io Version](https://img.shields.io/crates/v/clatter?style=flat-square)](https://crates.io/crates/clatter) [![docs.rs](https://img.shields.io/docsrs/clatter?style=flat-square)](https://docs.rs/clatter/latest/clatter/) +![GitHub branch check runs](https://img.shields.io/github/check-runs/jmlepisto/clatter/main?style=flat-square) + ⚠️ **Work in progress** ⚠️ diff --git a/fuzz.sh b/fuzz.sh deleted file mode 100755 index ff56a26..0000000 --- a/fuzz.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash -# -# Usage: -# fuzz.sh -# -# t: How many seconds to fuzz -set -e - -# Cleanup on exit -trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM EXIT - -# How many seconds to fuzz -T=${1?param missing - time to fuzz} - -FUZZ="cargo +nightly fuzz" -$FUZZ build - -# Fuzz all targets -targets=$($FUZZ list) -for target in $targets; do - $FUZZ run $target -- -max_total_time=$T & -done - -# Stop as soon as a fuzzer job fails -wait -n \ No newline at end of file