add loop_until_fail helper (#31360)

* helper

* remove count
old-commit-hash: 2e7ed5bd88d5a1d07855e65553871b32e3b018fa
This commit is contained in:
Justin Newberry
2024-02-07 20:07:01 -05:00
committed by GitHub
parent 43368e1313
commit 48e178760c
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -e
# Loop something forever until it fails, for verifying new tests
while true; do
$@
done