Initial commit

This commit is contained in:
Kerollmops
2020-05-25 20:39:53 +02:00
parent 4573f00a0d
commit 91ba938953
8 changed files with 1258 additions and 0 deletions

11
qc_loop.sh Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env bash
export RUST_BACKTRACE=1
while true
do
cargo test qc_ --release -- --nocapture
if [[ x$? != x0 ]] ; then
exit $?
fi
done