blob: 8b33cf979a52c7509583a1c757e32248075769ff (
plain)
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
|
#! /bin/sh -f
# $Id$
#
# Checks one ore more ACE test log file(s) for expected results.
IFS="|"
tmp=/tmp
# These patterns must be contained in log file.
SUCCESS_MSGS="starting|Ending"
# These patterns should not be contained in log file.
ERROR_MSGS="assertion failed|not supported|No such file or directory|Invalid argument|timeout|Bad file number"
status=0
for arg do
for i in $SUCCESS_MSGS; do
egrep $i $arg >/dev/null 2>&1
if [ $? -eq 1 ]; then
echo Error in $arg: no line with $i
status=1
fi
done
for i in $ERROR_MSGS; do
#### The /dev/null arg to egrep causes the filename to be printed
#### out. The sed command strips off the leading 'log/' and
#### trailing '.log'.
egrep $i $arg /dev/null | sed -e 's%^log/%%' -e 's%[.]log:%: %'
if [ $? -ne 0 ]; then status=1; fi
done
done
exit $status
# EOF
|