Files
archived-tauri/core/tauri/.scripts/loop_qc.sh
2024-03-01 08:29:01 -03:00

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