loop_qc.sh 282 B

1234567891011121314
  1. #!/bin/bash
  2. # Copyright 2019-2024 Tauri Programme within The Commons Conservancy
  3. # SPDX-License-Identifier: Apache-2.0
  4. # SPDX-License-Identifier: MIT
  5. # Loop all quickcheck tests for tauri.
  6. while true
  7. do
  8. cargo test qc_
  9. if [[ x$? != x0 ]] ; then
  10. exit $?
  11. fi
  12. done