aboutsummaryrefslogtreecommitdiffstats
path: root/test/features/3.10.exp
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2022-02-09 13:03:10 -0500
committerLibravatar GitHub <noreply@github.com>2022-02-09 13:03:10 -0500
commit03395e10bfd597eff5e324be53e24eb44898db98 (patch)
tree68f382289719461dc85180b8f7abb327b5787c18 /test/features/3.10.exp
parentFix iridium.profile (diff)
parenttesting: fix expect matching of numbers (diff)
downloadfirejail-03395e10bfd597eff5e324be53e24eb44898db98.tar.gz
firejail-03395e10bfd597eff5e324be53e24eb44898db98.tar.zst
firejail-03395e10bfd597eff5e324be53e24eb44898db98.zip
Merge pull request #4918 from smitsohu/tests2
testing: fix expect matching of numbers
Diffstat (limited to 'test/features/3.10.exp')
-rwxr-xr-xtest/features/3.10.exp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/features/3.10.exp b/test/features/3.10.exp
index e6dbbf93b..5d4414f40 100755
--- a/test/features/3.10.exp
+++ b/test/features/3.10.exp
@@ -22,7 +22,7 @@ sleep 1
22send -- "firejail --noprofile --whitelist=/tmp/test1dir\r" 22send -- "firejail --noprofile --whitelist=/tmp/test1dir\r"
23expect { 23expect {
24 timeout {puts "TESTING ERROR 0\n";exit} 24 timeout {puts "TESTING ERROR 0\n";exit}
25 "Child process initialized" 25 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
26} 26}
27sleep 1 27sleep 1
28 28
@@ -78,7 +78,7 @@ if { $overlay == "overlay" } {
78 expect { 78 expect {
79 timeout {puts "TESTING ERROR 2\n";exit} 79 timeout {puts "TESTING ERROR 2\n";exit}
80 "overlay option is not available" {puts "grsecurity\n"; exit} 80 "overlay option is not available" {puts "grsecurity\n"; exit}
81 "Child process initialized" {puts "normal system\n"} 81 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms" {puts "normal system\n"}
82 } 82 }
83 sleep 1 83 sleep 1
84 84
@@ -136,7 +136,7 @@ if { $chroot == "chroot" } {
136 send -- "firejail --noprofile --chroot=/tmp/chroot --whitelist=/tmp/test1dir\r" 136 send -- "firejail --noprofile --chroot=/tmp/chroot --whitelist=/tmp/test1dir\r"
137 expect { 137 expect {
138 timeout {puts "TESTING ERROR 4\n";exit} 138 timeout {puts "TESTING ERROR 4\n";exit}
139 "Child process initialized" 139 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
140 } 140 }
141 sleep 1 141 sleep 1
142 142