aboutsummaryrefslogtreecommitdiffstats
path: root/test/sysutils/xzdec.exp
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2023-02-24 20:37:35 -0500
committerLibravatar netblue30 <netblue30@protonmail.com>2023-02-24 20:37:35 -0500
commit2531759b80fbfcfbe296bd4bab329c61b7757c92 (patch)
treecc428443a3dbf5578882100ac45a9f6239fb430d /test/sysutils/xzdec.exp
parentNew profiles: qpdf and redirects (#5675) (diff)
downloadfirejail-2531759b80fbfcfbe296bd4bab329c61b7757c92.tar.gz
firejail-2531759b80fbfcfbe296bd4bab329c61b7757c92.tar.zst
firejail-2531759b80fbfcfbe296bd4bab329c61b7757c92.zip
more private-etc
Diffstat (limited to 'test/sysutils/xzdec.exp')
-rwxr-xr-xtest/sysutils/xzdec.exp29
1 files changed, 0 insertions, 29 deletions
diff --git a/test/sysutils/xzdec.exp b/test/sysutils/xzdec.exp
deleted file mode 100755
index 62cc1c225..000000000
--- a/test/sysutils/xzdec.exp
+++ /dev/null
@@ -1,29 +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 -- "/usr/bin/xz -c /usr/bin/firejail > firejail_t3\r"
11sleep 1
12
13send -- "/usr/bin/xzdec -c firejail_t3 > firejail_t1\r"
14sleep 1
15
16send -- "firejail /usr/bin/xzdec -c firejail_t3 > firejail_t2\r"
17sleep 1
18
19send -- "diff -s firejail_t1 firejail_t2\r"
20expect {
21 timeout {puts "TESTING ERROR 1\n";exit}
22 "firejail_t1 and firejail_t2 are identical"
23}
24
25send -- "rm firejail_t*\r"
26sleep 1
27
28
29puts "\nall done\n"