ci: fix test configs failures due to expect timeout
Fixed the expect failure arised due to this patch [1].
Due to the fact that the expect script matches the strings coming
in the order on the UART, it failed to match the 'x30' string.
[1]: https://review.trustedfirmware.org/c/ci/tf-a-ci-scripts/+/18680
Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
Change-Id: Iddfaeacfad46dda73cf3ad655390a034f5984afe
diff --git a/expect-lava/crash_roxlattables_unhandled_exception_at_el3.exp b/expect-lava/crash_roxlattables_unhandled_exception_at_el3.exp
index e117882..19d7666 100644
--- a/expect-lava/crash_roxlattables_unhandled_exception_at_el3.exp
+++ b/expect-lava/crash_roxlattables_unhandled_exception_at_el3.exp
@@ -8,4 +8,5 @@
expect_string+=('i;Translation tables are now read-only at EL3.')
expect_string+=('i;Unhandled Exception in EL3.')
+expect_string+=("i;x30")
source $ci_root/expect-lava/exception_regs.inc
diff --git a/expect-lava/crash_test.exp b/expect-lava/crash_test.exp
index 0cdb3a0..4d1651b 100644
--- a/expect-lava/crash_test.exp
+++ b/expect-lava/crash_test.exp
@@ -9,3 +9,4 @@
expect_string+=('i;Unhandled External Abort received')
expect_string+=('i;Unhandled Exception from EL2')
source $ci_root/expect-lava/exception_regs.inc
+expect_string+=("i;x30")
diff --git a/expect-lava/exception_regs.inc b/expect-lava/exception_regs.inc
index 919b30b..b6523db 100644
--- a/expect-lava/exception_regs.inc
+++ b/expect-lava/exception_regs.inc
@@ -35,7 +35,6 @@
expect_string+=("i;x27")
expect_string+=("i;x28")
expect_string+=("i;x29")
-expect_string+=("i;x30")
expect_string+=("i;scr_el3")
expect_string+=("i;sctlr_el3")
expect_string+=("i;cptr_el3")
diff --git a/expect-lava/panic_in_el3.exp b/expect-lava/panic_in_el3.exp
index 25dea3c..bbca395 100644
--- a/expect-lava/panic_in_el3.exp
+++ b/expect-lava/panic_in_el3.exp
@@ -7,4 +7,5 @@
#
expect_string+=("i;PANIC in EL3.")
+expect_string+=("i;x30")
source $ci_root/expect-lava/exception_regs.inc
diff --git a/expect/crash_roxlattables_unhandled_exception_at_el3.exp b/expect/crash_roxlattables_unhandled_exception_at_el3.exp
index 4c41eac..918b3f3 100644
--- a/expect/crash_roxlattables_unhandled_exception_at_el3.exp
+++ b/expect/crash_roxlattables_unhandled_exception_at_el3.exp
@@ -10,5 +10,6 @@
expect_string "Translation tables are now read-only at EL3."
expect_string "Unhandled Exception in EL3."
+expect_string "x30"
source [file join [file dirname [info script]] exception_regs.inc]
diff --git a/expect/crash_test.exp b/expect/crash_test.exp
index 1efd5a4..d6fbaf2 100644
--- a/expect/crash_test.exp
+++ b/expect/crash_test.exp
@@ -12,3 +12,4 @@
expect_string "Unhandled Exception from EL2"
source [file join [file dirname [info script]] exception_regs.inc]
+expect_string "x30"
diff --git a/expect/exception_regs.inc b/expect/exception_regs.inc
index c22ed99..b5c6b28 100644
--- a/expect/exception_regs.inc
+++ b/expect/exception_regs.inc
@@ -36,7 +36,6 @@
expect_string "x27"
expect_string "x28"
expect_string "x29"
-expect_string "x30"
expect_string "scr_el3"
expect_string "sctlr_el3"
expect_string "cptr_el3"
diff --git a/expect/panic_in_el3.exp b/expect/panic_in_el3.exp
index c712e2e..11bcc42 100644
--- a/expect/panic_in_el3.exp
+++ b/expect/panic_in_el3.exp
@@ -9,5 +9,6 @@
source [file join [file dirname [info script]] handle-arguments.inc]
expect_string "PANIC in EL3."
+expect_string "x30"
source [file join [file dirname [info script]] exception_regs.inc]