1
0
mirror of https://github.com/asciinema/avt.git synced 2025-04-19 05:22:19 +03:00
avt/fuzz.sh
2023-10-11 11:32:14 +02:00

15 lines
212 B
Bash
Executable File

#!/usr/bin/env bash
test=${1:-prop_}
export CARGO_PROFILE_TEST_OPT_LEVEL=3
while true
do
PROPTEST_CASES=1000000 RUST_BACKTRACE=1 cargo test $test
if [[ x$? != x0 ]] ; then
exit $?
fi
done