Skip to content

Commit d3adae4

Browse files
committed
feat: added just command for fuzzing
1 parent 08710bd commit d3adae4

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Diff for: justfile

+12
Original file line numberDiff line numberDiff line change
@@ -268,3 +268,15 @@ bump-versions:
268268
just format
269269

270270
lazygit
271+
272+
# Enter an infinite loop of testing until a bug is found.
273+
fuzz mod:
274+
#!/usr/bin/bash
275+
276+
while true
277+
do
278+
QUICKCHECK_TESTS=1000 cargo test {{mod}}
279+
if [[ x$? != x0 ]] ; then
280+
exit $?
281+
fi
282+
done

0 commit comments

Comments
 (0)