File: t-lockfile-0.sh

package info (click to toggle)
sendmail 8.18.1-6
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 12,496 kB
  • sloc: ansic: 105,736; perl: 7,504; sh: 5,488; makefile: 888
file content (70 lines) | stat: -rwxr-xr-x 1,432 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/sh
# Copyright (c) 2021 Proofpoint, Inc. and its suppliers.
#	All rights reserved.
#
# By using this file, you agree to the terms and conditions set
# forth in the LICENSE file which can be found at the top level of
# the sendmail distribution.
#
# ----------------------------------------
# test t-lockfile, analyze result
# ----------------------------------------

fail()
{
  echo "$0: $@"
  exit 1
}

PRG=./t-lockfile
O=l.log

analyze()
{
 # the "owner" unlock operation must be before
 # the "client" lock operation can succeed
 U=`grep -n 'owner=1, unlock.*done' $O | cut -d: -f1 | head -n1`
 [ x"$U" = "x" ] && U=`grep -n '_close' $O | cut -d: -f1 | head -n1`
 L=`grep -n 'owner=0, lock.* ok' $O | cut -d: -f1`
 [ x"$U" = "x" ] && return 1
 [ x"$L" = "x" ] && return 1
 [ $U -lt $L ]
}

all=true
while getopts 2a: FLAG
do
  case "${FLAG}" in
    2) all=false;;
    a) O=${OPTARG}
       analyze || fail "$opts: unlock1=$U, lock2=$L"
       exit;;
  esac
done
shift `expr ${OPTIND} - 1`

[ -x ${PRG} ] || fail "missing ${PRG}"

if $all
then
for opts in "" "-r" "-n" "-nr"
do
  ${PRG} $opts > $O 2>&1 || fail "$opts: $?"
  analyze || fail "$opts: unlock1=$U, lock2=$L"
done
fi

# try with two processes
for opts in "" "-r"
do
rm -f $O
${PRG} -W >> $O 2>&1 || fail "-W: $?"
wpid=$!
${PRG} -R $opts >> $O 2>&1 || fail "-R $opts: $?"
rpid=$!
analyze || fail "$opts: unlock1=$U, lock2=$L"
wait $wpid
wait $rpid
done

exit 0