summaryrefslogtreecommitdiff
path: root/tests/54-live-binary_tree.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/54-live-binary_tree.py')
-rwxr-xr-xtests/54-live-binary_tree.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/54-live-binary_tree.py b/tests/54-live-binary_tree.py
index 125c888..2250938 100755
--- a/tests/54-live-binary_tree.py
+++ b/tests/54-live-binary_tree.py
@@ -28,7 +28,7 @@ import util
from seccomp import *
-blacklist = [
+denylist = [
"times",
"ptrace",
"getuid",
@@ -79,7 +79,7 @@ def test():
f.add_rule(ALLOW, "brk")
f.add_rule(ALLOW, "exit_group")
- for syscall in blacklist:
+ for syscall in denylist:
f.add_rule(KILL, syscall)
f.load()