mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 00:21:32 +03:00
10 lines
147 B
Bash
10 lines
147 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Loop all quickcheck tests for tauri-api.
|
||
|
while true
|
||
|
do
|
||
|
cargo test qc_
|
||
|
if [[ x$? != x0 ]] ; then
|
||
|
exit $?
|
||
|
fi
|
||
|
done
|