threshold 0.6.4

Threshold data structures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash

###
### Example:
### $ quickcheck_loop.sh --test prop_tclock
###
### Another way is to use the QUICKCHECK_TESTS env variable:
### $ QUICKCHECK_TESTS=1000 cargo t --test prop_tclock

while true
do
    cargo test $@
    if [[ x$? != x0 ]] ; then
        exit $?
    fi
done