mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-01-31 00:35:19 +01:00
15 lines
282 B
Bash
15 lines
282 B
Bash
#!/bin/bash
|
|
# Copyright 2019-2024 Tauri Programme within The Commons Conservancy
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
|
# Loop all quickcheck tests for tauri.
|
|
while true
|
|
do
|
|
cargo test qc_
|
|
if [[ x$? != x0 ]] ; then
|
|
exit $?
|
|
fi
|
|
done
|