aboutsummaryrefslogtreecommitdiffstats
path: root/test/fcopy/filecopy.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/fcopy/filecopy.exp')
-rwxr-xr-xtest/fcopy/filecopy.exp57
1 files changed, 0 insertions, 57 deletions
diff --git a/test/fcopy/filecopy.exp b/test/fcopy/filecopy.exp
deleted file mode 100755
index e5d6fb0bc..000000000
--- a/test/fcopy/filecopy.exp
+++ /dev/null
@@ -1,57 +0,0 @@
1#!/usr/bin/expect -f
2# This file is part of Firejail project
3# Copyright (C) 2014-2018 Firejail Authors
4# License GPL v2
5
6#
7# copy directory src to dest
8#
9set timeout 10
10spawn $env(SHELL)
11match_max 100000
12
13send -- "rm -fr dest/*\r"
14after 100
15
16send -- "fcopy dircopy.exp dest\r"
17after 100
18
19send -- "find dest\r"
20expect {
21 timeout {puts "TESTING ERROR 0\n";exit}
22 "dest"
23}
24expect {
25 timeout {puts "TESTING ERROR 1\n";exit}
26 "dest/dircopy.exp"
27}
28after 100
29
30
31send -- "ls -al dest\r"
32expect {
33 timeout {puts "TESTING ERROR 2\n";exit}
34 "rwxr-xr-x" { puts "umask 0022\n" }
35 "rwxrwxr-x" { puts "umask 0002\n" }
36}
37after 100
38send -- "stty -echo\r"
39after 100
40
41send -- "diff -q dircopy.exp dest/dircopy.exp; echo done\r"
42expect {
43 timeout {puts "TESTING ERROR 3\n";exit}
44 "differ" {puts "TESTING ERROR 4\n";exit}
45 "done"
46}
47
48send -- "file dest/dircopy.exp\r"
49expect {
50 timeout {puts "TESTING ERROR 5\n";exit}
51 "ASCII text"
52}
53
54send -- "rm -fr dest/*\r"
55after 100
56
57puts "\nall done\n"