Blame tests/28-sim-arch_x86.tests

Packit 56e23f
#
Packit 56e23f
# libseccomp regression test automation data
Packit 56e23f
#
Packit 56e23f
# This test triggered a bug in libseccomp erroneously allowing the close()
Packit 56e23f
# syscall on x32 instead of 'KILL'ing it, as it should do for unsupported
Packit 56e23f
# architectures.
Packit 56e23f
#
Packit 56e23f
# Author: Mathias Krause <minipli@googlemail.com>
Packit 56e23f
#
Packit 56e23f
Packit 56e23f
test type: bpf-sim
Packit 56e23f
Packit 56e23f
# Testname	Arch		Syscall	Arg0	Arg1	Arg2	Arg3	Arg4	Arg5	Result
Packit 56e23f
28-sim-arch_x86	+x86,+x86_64	read	N	N	N	N	N	N	ALLOW
Packit 56e23f
28-sim-arch_x86	+x86,+x86_64	close	N	N	N	N	N	N	ERRNO(1)
Packit 56e23f
28-sim-arch_x86	+arm,+x32	read	N	N	N	N	N	N	KILL
Packit 56e23f
28-sim-arch_x86	+arm,+x32	close	N	N	N	N	N	N	KILL
Packit 56e23f
Packit 56e23f
test type: bpf-valgrind
Packit 56e23f
Packit 56e23f
# Testname
Packit 56e23f
28-sim-arch_x86