aboutsummaryrefslogtreecommitdiffstats
path: root/test/features/3.9.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.9.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.9.exp')
-rwxr-xr-xtest/features/3.9.exp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/features/3.9.exp b/test/features/3.9.exp
index 47db477ca..7d843e7cc 100755
--- a/test/features/3.9.exp
+++ b/test/features/3.9.exp
@@ -18,7 +18,7 @@ set chroot [lindex $argv 1]
18send -- "firejail --noprofile --whitelist=/dev/tty --whitelist=/dev/null\r" 18send -- "firejail --noprofile --whitelist=/dev/tty --whitelist=/dev/null\r"
19expect { 19expect {
20 timeout {puts "TESTING ERROR 0\n";exit} 20 timeout {puts "TESTING ERROR 0\n";exit}
21 "Child process initialized" 21 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
22} 22}
23sleep 1 23sleep 1
24 24
@@ -42,7 +42,7 @@ if { $overlay == "overlay" } {
42 expect { 42 expect {
43 timeout {puts "TESTING ERROR 2\n";exit} 43 timeout {puts "TESTING ERROR 2\n";exit}
44 "overlay option is not available" {puts "grsecurity\n"; exit} 44 "overlay option is not available" {puts "grsecurity\n"; exit}
45 "Child process initialized" {puts "normal system\n"} 45 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms" {puts "normal system\n"}
46 } 46 }
47 sleep 1 47 sleep 1
48 48
@@ -65,7 +65,7 @@ if { $chroot == "chroot" } {
65 send -- "firejail --noprofile --chroot=/tmp/chroot --whitelist=/dev/tty --whitelist=/dev/null\r" 65 send -- "firejail --noprofile --chroot=/tmp/chroot --whitelist=/dev/tty --whitelist=/dev/null\r"
66 expect { 66 expect {
67 timeout {puts "TESTING ERROR 4\n";exit} 67 timeout {puts "TESTING ERROR 4\n";exit}
68 "Child process initialized" 68 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
69 } 69 }
70 sleep 1 70 sleep 1
71 71