loop_qc.sh 147 B

12345678910
  1. #!/bin/bash
  2. # Loop all quickcheck tests for tauri-api.
  3. while true
  4. do
  5. cargo test qc_
  6. if [[ x$? != x0 ]] ; then
  7. exit $?
  8. fi
  9. done