Files
clearpilot/selfdrive/test/loop_until_fail.sh
2024-03-31 02:13:37 -07:00

9 lines
119 B
Bash

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