mirror of
https://github.com/asciinema/avt.git
synced 2025-04-19 05:22:19 +03:00
15 lines
212 B
Bash
Executable File
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
|