blob: 4052402d119675ed3e94cad441869600ef46109a (
plain) (
tree)
|
|
# -*- sh -*-
# See LICENSE file for copyright and license details.
for os in $(getnamelist OS); do
osn=$(getnum OS $os)
for arch in $(getnamelist ARCH); do
archn=$(getnum ARCH $arch)
get-signals.tu $osn $archn $os $arch > $a
grep -v '^[0-9]\{1,\} -' >/dev/null < $a
grep -v '^-' < $a > $b
grep '^\([0-9]\{1,\}\) \1 ' < $a | diff -u $a -
if issupported $os $arch; then
(! test "$(cat $a)" = x)
if test "$os" = LINUX; then
signed=1
grep '^[0-9]\{1,\} [0-9]\{1,\} [A-Z0-9_+]\{1,\}$' >/dev/null < $a
test -z "$(grep -v '^[0-9]\{1,\} [0-9]\{1,\} [A-Z0-9_+]\{1,\}$' < $a)"
required="SIGKILL SIGTERM SIGCONT SIGSTOP SIGHUP _SIGRTMIN _SIGRTMIN+8"
else
continue;
fi
for req in $required; do
grep '^-\{0,1\}[0-9]\{1,\} [0-9]\{1,\} '"$req"\$ >/dev/null < $a
done
cut -d ' ' -f $(( 2 - signed )) < $a > $b && sort -n < $b | diff -u $b -
if test -f testcases/signals-$os-$arch; then
if ! diff -u testcases/signals-$os-$arch $a; then
printf '\033[33m%s\033[m\n' "Maybe new signals have been added for $os on $arch"
exit 1
fi
fi
else
# Can still be successful because it may be hardcorded to
# use the same table as another architecture that is supported,
# however it cannot be successful if the OS is not supported
issupported $os
fi
test -z "$(cut -d ' ' -f 1 < $a | sort | uniq -d)"
test -z "$(cut -d ' ' -f 2 < $a | sort | uniq -d)"
test -z "$(cut -d ' ' -f 3 < $a | sort | uniq -d)"
done
done
test -f testcases/signals-LINUX-AMD64
|