summaryrefslogtreecommitdiffstats
path: root/tests/syscall-errors
diff options
context:
space:
mode:
Diffstat (limited to 'tests/syscall-errors')
-rw-r--r--tests/syscall-errors13
1 files changed, 4 insertions, 9 deletions
diff --git a/tests/syscall-errors b/tests/syscall-errors
index 4608fe7..9e04f1f 100644
--- a/tests/syscall-errors
+++ b/tests/syscall-errors
@@ -8,21 +8,17 @@ for os in $(getnamelist OS); do
get-syscall-errors.tu $osn $archn $os $arch > $a
if issupported $os $arch; then
(! test "$(cat $a)" = x)
- grep -v '^[0-9]\{1,\} -' >/dev/null < $a
- grep -v '^-' < $a > $b
- grep '^\([0-9]\{1,\}\) \1 ' < $a | diff -u $a -
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)"
+ grep '^[0-9]\{1,\} [A-Z0-9_]\{1,\}$' >/dev/null < $a
+ test -z "$(grep -v '^[0-9]\{1,\} [A-Z0-9_]\{1,\}$' < $a)"
required="ERESTARTSYS ERESTARTNOINTR ERESTARTNOHAND ERESTART_RESTARTBLOCK EPERM ENOENT EDOM ELOOP"
else
continue;
fi
for req in $required; do
- grep '^-\{0,1\}[0-9]\{1,\} [0-9]\{1,\} '"$req"\$ >/dev/null < $a
+ grep '^[+-]\{0,1\}[0-9]\{1,\} '"$req"\$ >/dev/null < $a
done
- cut -d ' ' -f $(( 2 - signed )) < $a > $b && sort -n < $b | diff -u $b -
+ cut -d ' ' -f 1 < $a > $b && sort -n < $b | diff -u $b -
if test -f testcases/errors-$os-$arch; then
if ! diff -u testcases/errors-$os-$arch $a; then
printf '\033[33m%s\033[m\n' "Maybe new errors have been added for $os on $arch"
@@ -37,7 +33,6 @@ for os in $(getnamelist OS); do
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/errors-LINUX-AMD64