autotest: raise lock timeout

This commit is contained in:
Andrew Tridgell 2016-03-26 19:28:04 +11:00
parent dc9d87fde3
commit df765f0d43

View File

@ -40,7 +40,7 @@ lock_file() {
if test -f "$lck" && kill -0 $pid 2> /dev/null; then
LOCKAGE=$(($(date +%s) - $(stat -c '%Y' "build.lck")))
test $LOCKAGE -gt 30000 && {
test $LOCKAGE -gt 60000 && {
echo "old lock file $lck is valid for $pid with age $LOCKAGE seconds"
}
return 1