android_mt6572_jiabo/external/tlsdate/tests/subproc-retry/subproc.sh
2025-09-05 16:56:03 +08:00

9 lines
151 B
Bash
Executable file

#!/bin/sh
# Die on the first three attempts.
. "$(dirname $0)"/../common.sh
inc_counter "runs"
if [ $(counter "runs") -lt 3 ]; then
exit 1
fi
passed