summaryrefslogtreecommitdiff
path: root/tests/53-sim-binary_tree.c
diff options
context:
space:
mode:
authorTom Hromatka <tom.hromatka@oracle.com>2020-03-23 13:15:46 -0600
committerPaul Moore <paul@paul-moore.com>2020-03-25 14:02:33 -0400
commit5abc3b1284faa7e3e63b6efed5300572ac0723ce (patch)
tree3fba872a43e9245fd550de3fcd02270db7f5d62e /tests/53-sim-binary_tree.c
parentafc713a8fe289059a18350ab550ca28056356196 (diff)
downloadlibseccomp-5abc3b1284faa7e3e63b6efed5300572ac0723ce.tar.gz
tests: Remove ipc syscalls from test 53-sim-binary_tree
The syscalls shmat, shmctl, and shmget are ipc syscalls on s390 and s390x. This causes test #53 to fail due to the syscall number not matching up with the values in the *.tests file. This commit removes the aforementioned ipc syscalls since they are being tested in tests #36 and #37. Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'tests/53-sim-binary_tree.c')
-rw-r--r--tests/53-sim-binary_tree.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/53-sim-binary_tree.c b/tests/53-sim-binary_tree.c
index bf2e553..291b7c5 100644
--- a/tests/53-sim-binary_tree.c
+++ b/tests/53-sim-binary_tree.c
@@ -72,9 +72,6 @@ struct syscall_errno table[] = {
{ SCMP_SYS(msync), 26, 0, { 0, 0 } },
{ SCMP_SYS(mincore), 27, 0, { 0, 0 } },
{ SCMP_SYS(madvise), 28, 0, { 0, 0 } },
- { SCMP_SYS(shmget), 29, 0, { 0, 0 } },
- { SCMP_SYS(shmat), 30, 1, { 110, 0 } },
- { SCMP_SYS(shmctl), 31, 1, { 111, 0 } },
{ SCMP_SYS(dup), 32, 1, { 112, 0 } },
{ SCMP_SYS(dup2), 33, 0, { 0, 0 } },
{ SCMP_SYS(pause), 34, 0, { 0, 0 } },