##// END OF EJS Templates
tests: use regular POSIX shell...
tests: use regular POSIX shell wait-on-file requires one POSIX extension (sleep with non-integral argument), but it doesn't require any bash extensions, so just require a normal POSIX shell. While here, use consistent formatting without redundant ; Differential Revision: https://phab.mercurial-scm.org/D8500

File last commit:

r45287:f727939f stable
r45287:f727939f stable
Show More
wait-on-file
36 lines | 824 B | text/plain | TextLexer
Joerg Sonnenberger
tests: use regular POSIX shell...
r45287 #!/bin/sh
testlib: add a small scrip to help process to synchronise using file...
r45121 #
# wait up to TIMEOUT seconds until a WAIT_ON_FILE is created.
#
# In addition, this script can create CREATE_FILE once it is ready to wait.
if [ $# -lt 2 ] || [ $# -gt 3 ]; then
echo $#
echo "USAGE: $0 TIMEOUT WAIT_ON_FILE [CREATE_FILE]"
fi
timer="$1"
testlib: adjust wait-on-file timeout according to the global test timeout...
r45122
# if the test timeout have been extended, explicitly extend the provided timer
if [ "$HGTEST_TIMEOUT_DEFAULT" -lt "$HGTEST_TIMEOUT" ]; then
wait-on-file: adjust the timer counter...
r45246 timer=$(( ( 100 * $timer * $HGTEST_TIMEOUT) / $HGTEST_TIMEOUT_DEFAULT ))
testlib: adjust wait-on-file timeout according to the global test timeout...
r45122 fi
testlib: add a small scrip to help process to synchronise using file...
r45121 wait_on="$2"
create=""
if [ $# -eq 3 ]; then
create="$3"
fi
Joerg Sonnenberger
tests: use regular POSIX shell...
r45287 if [ -n "$create" ]; then
testlib: add a small scrip to help process to synchronise using file...
r45121 touch "$create"
create=""
fi
Joerg Sonnenberger
tests: use regular POSIX shell...
r45287 while [ "$timer" -gt 0 ] && [ ! -f "$wait_on" ]; do
wait-on-file: use proper variable in math...
r45221 timer=$(( $timer - 1))
testlib: add a small scrip to help process to synchronise using file...
r45121 sleep 0.01
done
if [ "$timer" -le 0 ]; then
echo "file not created after $1 seconds: $wait_on" >&2
exit 1
fi