blob: fa47fb443e859aee6fd1806dfdc4a077a1deca3a (
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
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
71
|
#!/bin/sh
#
# This file is part of the coreboot project.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc.
#
#set -x # uncomment for debug
usage () {
printf "Usage: %s <lint|lint-stable> [--junit]\n" "$0"
}
junit_write () {
if [ "$JUNIT" -eq 1 ]; then
echo "$1" >> "$XMLFILE"
fi
}
if [ -z "$1" ] || [ "$1" != "lint" ] && [ "$1" != "lint-stable" ]; then
usage
exit 1
fi
LINTLOG=`mktemp .tmpconfig.lintXXXXX`;
XMLFILE="$(dirname $0)/junit.xml"
FAILED=0;
if [ "$2" = "--junit" ]; then
JUNIT=1
echo '<?xml version="1.0" encoding="utf-8"?>' > "$XMLFILE"
junit_write '<testsuite>'
else
JUNIT=0
fi
for script in util/lint/${1}-*; do
echo
echo "$(basename $script)"
grep "^# DESCR:" $script | sed "s,.*DESCR: *,,"
echo "========"
junit_write " <testcase classname='lint' name='$(basename $script)'>"
$script > $LINTLOG
if [ `cat $LINTLOG | wc -l` -eq 0 ]; then
echo "success"
junit_write " <system-out><![CDATA[success]]></system-out>"
else
echo "test failed:"
cat $LINTLOG
junit_write " <failure type='testFailed'><![CDATA["
junit_write "$(cat $LINTLOG)"
junit_write "]]></failure>"
rm -f $LINTLOG
FAILED=$(( $FAILED + 1 ))
fi
echo "========"
junit_write ' </testcase>'
done
test $FAILED -eq 0 || { echo "ERROR: $FAILED test(s) failed."; rm -f $LINTLOG && exit 1; };
rm -f $LINTLOG
junit_write '</testsuite>'
|