Files
clearpilot/selfdrive/test/loop_until_fail.sh
Comma Device 1ff14d346f wip
2024-05-14 08:21:27 +00:00

9 lines
119 B
Bash
Executable File

#!/usr/bin/env bash
set -e
# Loop something forever until it fails, for verifying new tests
while true; do
$@
done