aboutsummaryrefslogtreecommitdiffstats
path: root/test/root/option_bind_file.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/root/option_bind_file.exp')
-rwxr-xr-xtest/root/option_bind_file.exp24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/root/option_bind_file.exp b/test/root/option_bind_file.exp
deleted file mode 100755
index 0807f951a..000000000
--- a/test/root/option_bind_file.exp
+++ /dev/null
@@ -1,24 +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 --bind=tmpfile,/etc/passwd\r"
11expect {
12 timeout {puts "TESTING ERROR 0\n";exit}
13 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
14}
15sleep 1
16
17send -- "cat /etc/passwd;pwd\r"
18expect {
19 timeout {puts "TESTING ERROR 1\n";exit}
20 "hello"
21}
22sleep 1
23
24puts "\n"