summaryrefslogtreecommitdiff
path: root/tests/35-sim-negative_one.py
diff options
context:
space:
mode:
authorPaul Moore <paul@paul-moore.com>2017-02-15 17:56:21 -0500
committerPaul Moore <paul@paul-moore.com>2017-02-23 12:17:32 -0500
commit11e21098e0c3b5481fb0f6e6bdbb266bdd0fc24c (patch)
tree9247f10c8f8c811930299066e18931184cab5102 /tests/35-sim-negative_one.py
parentdc879990774b5fe0b5d3362ae592e8a5bb615fbb (diff)
downloadlibseccomp-11e21098e0c3b5481fb0f6e6bdbb266bdd0fc24c.tar.gz
all: add tests to ensure that syscall -1 is handled correctly
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'tests/35-sim-negative_one.py')
-rwxr-xr-xtests/35-sim-negative_one.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/35-sim-negative_one.py b/tests/35-sim-negative_one.py
new file mode 100755
index 0000000..d94fda5
--- /dev/null
+++ b/tests/35-sim-negative_one.py
@@ -0,0 +1,46 @@
+#!/usr/bin/env python
+
+#
+# Seccomp Library test program
+#
+# Copyright (c) 2017 Red Hat <pmoore@redhat.com>
+# Author: Paul Moore <paul@paul-moore.com>
+#
+
+#
+# This library is free software; you can redistribute it and/or modify it
+# under the terms of version 2.1 of the GNU Lesser General Public License as
+# published by the Free Software Foundation.
+#
+# This library is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+# for more details.
+#
+# You should have received a copy of the GNU Lesser General Public License
+# along with this library; if not, see <http://www.gnu.org/licenses>.
+#
+
+import argparse
+import sys
+
+import util
+
+from seccomp import *
+
+def test(args):
+ f = SyscallFilter(KILL)
+ f.remove_arch(Arch())
+ f.add_arch(Arch("x86"))
+ f.add_arch(Arch("x86_64"))
+ f.set_attr(Attr.API_TSKIP, 1)
+ f.syscall_priority(-1, 100)
+ f.add_rule(ALLOW, -1)
+ return f
+
+args = util.get_opt()
+ctx = test(args)
+util.filter_output(args, ctx)
+
+# kate: syntax python;
+# kate: indent-mode python; space-indent on; indent-width 4; mixedindent off;