]> git.proxmox.com Git - mirror_libseccomp.git/blob - tests/46-sim-kill_process.py
tests: fix a number of problems with the tests on a 32-bit x86 system
[mirror_libseccomp.git] / tests / 46-sim-kill_process.py
1 #!/usr/bin/env python
2
3 #
4 # Seccomp Library test program
5 #
6 # Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
7 # Author: Tom Hromatka <tom.hromatka@oracle.com>
8 #
9
10 #
11 # This library is free software; you can redistribute it and/or modify it
12 # under the terms of version 2.1 of the GNU Lesser General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This library is distributed in the hope that it will be useful, but WITHOUT
16 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
18 # for more details.
19 #
20 # You should have received a copy of the GNU Lesser General Public License
21 # along with this library; if not, see <http://www.gnu.org/licenses>.
22 #
23
24 import argparse
25 import sys
26
27 import util
28
29 from seccomp import *
30
31 def test(args):
32 set_api(3)
33 f = SyscallFilter(KILL_PROCESS)
34 f.remove_arch(Arch())
35 f.add_arch(Arch("x86_64"))
36 f.add_rule_exactly(ALLOW, "read")
37 f.add_rule_exactly(ERRNO(5), "write")
38 f.add_rule_exactly(KILL, "open")
39 f.add_rule_exactly(ERRNO(6), "close", Arg(0, GT, 100))
40 return f
41
42 args = util.get_opt()
43 ctx = test(args)
44 util.filter_output(args, ctx)
45
46 # kate: syntax python;
47 # kate: indent-mode python; space-indent on; indent-width 4; mixedindent off;