citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

commit 1d445115c8cd6b698a682a03eb0dedd1d5079eb7
parent 1b417da3248091848141ac38901aa26427a95649
Author: William Casarin <jb55@jb55.com>
Date:   Mon, 28 Jun 2021 07:20:14 -0700

fuzz-compile: add test

Diffstat:
Mbin/fuzz-compile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/fuzz-compile b/bin/fuzz-compile @@ -13,7 +13,7 @@ then cmd="npm run $target" elif [ -f Cargo.toml ] then - target=$(printf "check\nbuild\n" | fuzzer "$@") + target=$(printf "check\nbuild\ntest\n" | fuzzer "$@") cmd="cargo $target --color=always 2>&1| sed -E '/^.*(warning|error).*:/N;s/\n//;s/-->//g'" else target=$(fuzz-make "$@")