summaryrefslogtreecommitdiff
path: root/tests/07-sim-db_bug_looping.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/07-sim-db_bug_looping.py')
-rwxr-xr-xtests/07-sim-db_bug_looping.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/07-sim-db_bug_looping.py b/tests/07-sim-db_bug_looping.py
index 0b6e988..3314a3e 100755
--- a/tests/07-sim-db_bug_looping.py
+++ b/tests/07-sim-db_bug_looping.py
@@ -32,9 +32,9 @@ def test(args):
f = SyscallFilter(KILL)
# the next three seccomp_rule_add_exact() calls for read must go together
# in this order to catch an infinite loop.
- f.add_rule(ALLOW, "read", Arg(0, EQ, sys.stdout))
+ f.add_rule(ALLOW, "read", Arg(0, EQ, sys.stdout.fileno()))
f.add_rule(ALLOW, "read", Arg(1, EQ, 0))
- f.add_rule(ALLOW, "read", Arg(0, EQ, sys.stdin))
+ f.add_rule(ALLOW, "read", Arg(0, EQ, sys.stdin.fileno()))
return f
args = util.get_opt()