summaryrefslogtreecommitdiff
path: root/tests/24-live-arg_allow.py
diff options
context:
space:
mode:
authorPaul Moore <paul@paul-moore.com>2018-01-10 15:57:52 -0500
committerPaul Moore <paul@paul-moore.com>2018-01-10 15:57:52 -0500
commit8aced6fe4087e7e16e76d06bdf1e73f0a2ae9c97 (patch)
tree2566c765d24283521c8e7bf8f6170a76b63076cb /tests/24-live-arg_allow.py
parentc842c2f6c203ad9da37ca60219172aa0be68d26a (diff)
downloadlibseccomp-8aced6fe4087e7e16e76d06bdf1e73f0a2ae9c97.tar.gz
tests: fix the live Python tests
Add the sigaltstack(2) syscall to the list of allowed syscalls; tested against Python v3.6.4. Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'tests/24-live-arg_allow.py')
-rwxr-xr-xtests/24-live-arg_allow.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/24-live-arg_allow.py b/tests/24-live-arg_allow.py
index 51e6110..3226584 100755
--- a/tests/24-live-arg_allow.py
+++ b/tests/24-live-arg_allow.py
@@ -43,6 +43,7 @@ def test():
f.add_rule(ALLOW, "close")
f.add_rule(ALLOW, "rt_sigaction")
f.add_rule(ALLOW, "rt_sigreturn")
+ f.add_rule(ALLOW, "sigaltstack")
f.add_rule(ALLOW, "exit_group")
f.add_rule(ALLOW, "brk")
f.load()