summaryrefslogtreecommitdiff
path: root/tests/24-live-arg_allow.py
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <mjuszkiewicz@redhat.com>2014-08-21 17:30:40 +0200
committerPaul Moore <pmoore@redhat.com>2014-08-27 09:58:53 -0400
commitab63dc7fec3d4e5552bf5f363231c3fe1a7436d7 (patch)
tree7003af1139733b37177ee1170e52791ad4c15a89 /tests/24-live-arg_allow.py
parent52085b7dddf779746373e35d5c70546cc3633553 (diff)
downloadlibseccomp-ab63dc7fec3d4e5552bf5f363231c3fe1a7436d7.tar.gz
arch: Add AArch64 support
This patch adds support for AArch64 (64-bit ARM) architecture. Signed-off-by: Marcin Juszkiewicz <mjuszkiewicz@redhat.com> (Additional fixes/corrections/etc.) Signed-off-by: Paul Moore <pmoore@redhat.com>
Diffstat (limited to 'tests/24-live-arg_allow.py')
-rwxr-xr-xtests/24-live-arg_allow.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/24-live-arg_allow.py b/tests/24-live-arg_allow.py
index 32c63ec..7df970a 100755
--- a/tests/24-live-arg_allow.py
+++ b/tests/24-live-arg_allow.py
@@ -39,11 +39,11 @@ def test():
f = SyscallFilter(TRAP)
# NOTE: additional syscalls required for python
- f.add_rule_exactly(ALLOW, "write", Arg(0, EQ, fd))
- f.add_rule_exactly(ALLOW, "close")
- f.add_rule_exactly(ALLOW, "rt_sigaction")
- f.add_rule_exactly(ALLOW, "rt_sigreturn")
- f.add_rule_exactly(ALLOW, "exit_group")
+ f.add_rule(ALLOW, "write", Arg(0, EQ, fd))
+ f.add_rule(ALLOW, "close")
+ f.add_rule(ALLOW, "rt_sigaction")
+ f.add_rule(ALLOW, "rt_sigreturn")
+ f.add_rule(ALLOW, "exit_group")
f.load()
try: