add loop_until_fail helper (#31360)
* helper
* remove count
old-commit-hash: 2e7ed5bd88
chrysler-long2
parent
43368e1313
commit
48e178760c
1 changed files with 8 additions and 0 deletions
@ -0,0 +1,8 @@ |
||||
#!/usr/bin/env bash |
||||
set -e |
||||
|
||||
# Loop something forever until it fails, for verifying new tests |
||||
|
||||
while true; do |
||||
$@ |
||||
done |
Loading…
Reference in new issue