Files
onepilot/selfdrive/test/loop_until_fail.sh
T
2024-03-06 15:29:21 -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