Files
dragonpilot/selfdrive/test/loop_until_fail.sh
dragonpilot a5cee30aa6 dragonpilot beta3
date: 2024-06-25T13:13:17
commit: 69a099242f
2024-06-25 13:13:19 +08: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