aboutsummaryrefslogtreecommitdiffstats
path: root/test/features/2.1.exp
diff options
context:
space:
mode:
authorLibravatar smitsohu <smitsohu@gmail.com>2022-02-09 18:04:36 +0100
committerLibravatar smitsohu <smitsohu@gmail.com>2022-02-09 18:30:45 +0100
commit7578e86ef8ddb78da44d426b94def77366627e0e (patch)
treee752d23f1b61a50fb7b7372d6799fe9ef4d111e4 /test/features/2.1.exp
parentMerge pull request #4915 from kmk3/keepassx-restore-nou2f (diff)
downloadfirejail-7578e86ef8ddb78da44d426b94def77366627e0e.tar.gz
firejail-7578e86ef8ddb78da44d426b94def77366627e0e.tar.zst
firejail-7578e86ef8ddb78da44d426b94def77366627e0e.zip
testing: fix expect matching of numbers
The sandbox timestamp should not be available for matching when output is already expected from the next command (this is only a problem if numeric output if expected from the first command in the sandbox). A possible alternative would be to flush the expect output buffer with 'expect "*"' after the sandbox is up.
Diffstat (limited to 'test/features/2.1.exp')
-rwxr-xr-xtest/features/2.1.exp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/features/2.1.exp b/test/features/2.1.exp
index 586ab6490..b56cbc135 100755
--- a/test/features/2.1.exp
+++ b/test/features/2.1.exp
@@ -18,7 +18,7 @@ set chroot [lindex $argv 1]
18send -- "firejail --noprofile --hostname=bingo\r" 18send -- "firejail --noprofile --hostname=bingo\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
@@ -56,7 +56,7 @@ if { $overlay == "overlay" } {
56 expect { 56 expect {
57 timeout {puts "TESTING ERROR 2\n";exit} 57 timeout {puts "TESTING ERROR 2\n";exit}
58 "overlay option is not available" {puts "grsecurity\n"; exit} 58 "overlay option is not available" {puts "grsecurity\n"; exit}
59 "Child process initialized" {puts "normal system\n"} 59 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms" {puts "normal system\n"}
60 } 60 }
61 sleep 1 61 sleep 1
62 62
@@ -93,7 +93,7 @@ if { $chroot == "chroot" } {
93 send -- "firejail --noprofile --hostname=bingo --chroot=/tmp/chroot\r" 93 send -- "firejail --noprofile --hostname=bingo --chroot=/tmp/chroot\r"
94 expect { 94 expect {
95 timeout {puts "TESTING ERROR 4\n";exit} 95 timeout {puts "TESTING ERROR 4\n";exit}
96 "Child process initialized" 96 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
97 } 97 }
98 sleep 1 98 sleep 1
99 99