Skip to content

Commit

Permalink
Add make fuzz command to run fuzzy test #21
Browse files Browse the repository at this point in the history
  • Loading branch information
jjyr committed Oct 24, 2024
1 parent c8065c7 commit 1787137
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.PHONY: default integration test fuzz

default: integration

integration: check-fmt check clippy test test-release run-example
Expand All @@ -23,3 +25,7 @@ run-example:
for example in ${EXAMPLES} ; do \
cargo run --example $$example; \
done

fuzz:
cargo +nightly fuzz run chaos

0 comments on commit 1787137

Please sign in to comment.