aboutsummaryrefslogtreecommitdiffstats
path: root/test/seccomp-debug.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/seccomp-debug.exp')
-rwxr-xr-xtest/seccomp-debug.exp28
1 files changed, 0 insertions, 28 deletions
diff --git a/test/seccomp-debug.exp b/test/seccomp-debug.exp
deleted file mode 100755
index 1034f040e..000000000
--- a/test/seccomp-debug.exp
+++ /dev/null
@@ -1,28 +0,0 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7send -- "firejail --seccomp --debug\r"
8expect {
9 timeout {puts "TESTING ERROR 0\n";exit}
10 "SECCOMP Filter"
11}
12expect {
13 timeout {puts "TESTING ERROR 2\n";exit}
14 "BLACKLIST"
15}
16expect {
17 timeout {puts "TESTING ERROR 3\n";exit}
18 "open_by_handle_at"
19}
20expect {
21 timeout {puts "TESTING ERROR 4\n";exit}
22 "Child process initialized"
23}
24sleep 2
25
26send -- "exit\r"
27after 100
28puts "all done\n"