-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlxc-parallel-test.sh
executable file
·111 lines (92 loc) · 2.22 KB
/
lxc-parallel-test.sh
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
#!/bin/sh -e
# Run lxc-test.sh on LXD containers in parallel.
process_args() {
script=$(readlink -f "$0")
script_path=$(dirname "${script}")
while [ "$1" ]; do
case "$1" in
"-c" | "--container")
shift
containers="${containers} $1"
;;
"-f" | "--file")
shift
contents=$(grep -v '^#' "$1")
containers="${containers} ${contents}"
;;
"-h" | "--help")
help=1
;;
"--")
shift
options="$*"
break
;;
*)
echo "Unknown argument: $1"
exit 1
;;
esac
shift
done
if [ "${containers}" = "" ]; then
help=1
fi
container_pids="lxc-parallel-test.pid"
}
show_help() {
if [ ! ${help} ]; then return; fi
cat <<- EOF
Usage: lxc-parallel-test.sh source [...] -- [argument...] -- [option...]
Sources:
-c, --container name An LXD container to run tests against.
-f, --file list A file listing LXD containers, one per line.
Lines starting with a # are considered comments.
EOF
"${script_path}/lxc-test.sh" | grep -A 1000 '^Arguments:'
exit 0
}
test_container() {
echo "Starting test of ${container} in the background."
# shellcheck disable=SC2086
"${script_path}/lxc-test.sh" \
"${container}" \
${options} \
> "${container}.log" 2>&1 &
pid=$!
echo "${pid}:${container}" >> "${container_pids}"
pids="${pids} ${pid}"
}
run_tests() {
rm -f "${container_pids}"
for container in ${containers}; do
test_container
done
echo "Waiting for tests to complete."
# shellcheck disable=SC2086
wait_all ${pids}
}
wait_all() {
while [ $# -gt 0 ]; do
for pid in "$@"; do
shift
if kill -0 "${pid}" 2> /dev/null; then
set -- "$@" "${pid}"
elif wait "${pid}"; then
container=$(grep "^${pid}:" "${container_pids}" | sed "s/^${pid}://;")
echo "Container ${container} exited with zero exit status."
else
container=$(grep "^${pid}:" "${container_pids}" | sed "s/^${pid}://;")
echo "Container ${container} exited with non-zero exit status."
fi
done
sleep 1
done
}
main() {
process_args "$@"
show_help
run_tests
}
main "$@"
exit 0