aboutsummaryrefslogtreecommitdiffstats
path: root/test/root/seccomp-umount.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/root/seccomp-umount.exp')
-rwxr-xr-xtest/root/seccomp-umount.exp25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/root/seccomp-umount.exp b/test/root/seccomp-umount.exp
deleted file mode 100755
index 70a39925d..000000000
--- a/test/root/seccomp-umount.exp
+++ /dev/null
@@ -1,25 +0,0 @@
1#!/usr/bin/expect -f
2# This file is part of Firejail project
3# Copyright (C) 2014-2023 Firejail Authors
4# License GPL v2
5
6set timeout 10
7spawn $env(SHELL)
8match_max 100000
9
10send -- "firejail --seccomp --noprofile\r"
11expect {
12 timeout {puts "TESTING ERROR 0\n";exit}
13 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
14}
15sleep 2
16
17send -- "umount /proc\r"
18expect {
19 timeout {puts "TESTING ERROR 1\n";exit}
20 "Bad system call"
21}
22
23send -- "exit\r"
24after 100
25puts "\n"