add loop_until_fail helper (#31360)

* helper

* remove count
This commit is contained in:
Justin Newberry
2024-02-07 20:07:01 -05:00
committed by GitHub
parent 4fea2a343a
commit 2e7ed5bd88
+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