blob: 927c754b9f32353f848c730f6b9fb11d6a9c5c93 (
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
#!/bin/bash
#
# libseccomp test diff generator
#
# Copyright (c) 2013 Red Hat <pmoore@redhat.com>
# Author: Paul Moore <paul@paul-moore.com>
#
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of version 2.1 of the GNU Lesser General Public License as
# published by the Free Software Foundation.
#
# This library 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 Lesser General Public License
# for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, see <http://www.gnu.org/licenses>.
#
####
# functions
#
# Print out script usage details
#
function usage() {
cat << EOF
usage: regression [-h] LABEL_1 LABEL_2
libseccomp test diff generator script
optional arguments:
-h show this help message and exit
EOF
}
#
# Print the test header
#
# Arguments:
# 1 string containing generated test number
#
function print_test() {
printf "Test %s comparison:\n" "$1"
}
#
# Compare the tests
#
# Arguments:
# 1 string containing first test label
# 2 string containing second test label
#
function diff_tests() {
local batch_name
local label_a
local label_b
local file_a
local file_b
if [[ -n $1 ]]; then
label_a=".$1"
else
label_a=""
fi
if [[ -n $2 ]]; then
label_b=".$2"
else
label_b=""
fi
for file in *-sim-*.tests; do
# extract the batch name from the file name
batch_name=$(basename $file .tests)
print_test "$batch_name"
file_a="${batch_name}${label_a}"
file_b="${batch_name}${label_b}"
if [[ -r "$file_a.pfc" && -r "$file_b.pfc" ]]; then
diff -pu "$file_a.pfc" "$file_b.pfc"
fi
if [[ -r "$file_a.bpf" && -r "$file_b.bpf" ]]; then
diff -pu "$file_a.bpf" "$file_b.bpf"
fi
if [[ -r "$file_a.bpfd" && -r "$file_b.bpfd" ]]; then
diff -pu "$file_a.bpfd" "$file_b.bpfd"
fi
done
return
}
####
# main
opt_label=
opt_disasm=0
while getopts "h" opt; do
case $opt in
h|*)
usage
exit 1
;;
esac
done
stats_all=0
stats_failure=0
# display the test output and run the requested tests
echo "=============== $(date) ==============="
echo "Comparing Test Output (\"testdiff $*\")"
diff_tests "$1" "$2"
echo "============================================================"
# exit
exit 0
|