|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen master] CI: fix waiting for final test message (again)
commit 79de6507c59021484e7c0b359f45035eab891e88
Author: Marek Marczykowski-Górecki <marmarek@xxxxxxxxxxxxxxxxxxxxxx>
AuthorDate: Sun Apr 13 15:47:31 2025 +0200
Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
CommitDate: Mon Apr 14 12:16:43 2025 +0100
CI: fix waiting for final test message (again)
The previous attempt has correct diagnosis, but added -notransfer flag
in a wrong place - it should be used in the first (outer) match out of
two, not the second (inner) one.
Fixes: 1e12cbd6af2c ("CI: fix waiting for final test message")
Signed-off-by: Marek Marczykowski-Górecki <marmarek@xxxxxxxxxxxxxxxxxxxxxx>
Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
---
automation/scripts/console.exp | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/automation/scripts/console.exp b/automation/scripts/console.exp
index bdb1dd9820..fc80513dfb 100755
--- a/automation/scripts/console.exp
+++ b/automation/scripts/console.exp
@@ -60,12 +60,12 @@ if {[info exists env(WAKEUP_CMD)]} {
if {[info exists env(LOG_MSG)]} {
expect {
- -re "$env(PASSED)" {
- expect -notransfer -re "$env(LOG_MSG)"
+ -notransfer -re "$env(PASSED)" {
+ expect -re "$env(LOG_MSG)"
exit 0
}
- -re "$env(LOG_MSG)" {
- expect -notransfer -re "$env(PASSED)"
+ -notransfer -re "$env(LOG_MSG)" {
+ expect -re "$env(PASSED)"
exit 0
}
}
--
generated by git-patchbot for /home/xen/git/xen.git#master
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |