Files
clearpilot/selfdrive/test/loop_until_fail.sh
Your Name 931db76fc6 wip
2024-04-27 13:48:05 -05: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