mirror of https://github.com/commaai/openpilot.git
9 lines
119 B
Bash
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
|