summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Sokolovsky <paul.sokolovsky@linaro.org>2023-06-02 12:28:30 +0300
committerPaul Sokolovsky <paul.sokolovsky@linaro.org>2023-06-02 12:28:30 +0300
commita59466755cae57a6d9d4878b868a88333c07aa4f (patch)
tree33c4c5362a8042f6884d3dbb74faf286feef9300
parentbfa80ed4d260cd350b9bcaa9e20aa47f2b522b90 (diff)
trusted-firmware.inc: Catch failures on "Booting BL31" stage too
Issue was seen in LTS jobs: https://tf.validation.linaro.org/scheduler/job/1645072 Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org> Change-Id: I83d01f475ff4bd281883d81de2ca4b924b993d5a
-rw-r--r--expect-lava/trusted-firmware.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/expect-lava/trusted-firmware.inc b/expect-lava/trusted-firmware.inc
index 7fb68bba..2281f3ce 100644
--- a/expect-lava/trusted-firmware.inc
+++ b/expect-lava/trusted-firmware.inc
@@ -13,7 +13,7 @@ if [ -z "$skip_early_boot_msgs" ]; then
expect_string+=('i;Booting Trusted Firmware')
prompt='Booting BL2'
- # Catch all 3 possible BL2 loading error messages, namely:
+ # Catch all possible BL2 loading error messages, namely:
# "Failure in pre image load handling of BL2"
# "Failed to load BL2 firmware."
# "Failure in post image load handling of BL2"
@@ -21,5 +21,5 @@ if [ -z "$skip_early_boot_msgs" ]; then
failures='Fail.*load.*BL2|BL2.*Fail.*load'
expect_string+=("i;${prompt};;${failures}")
- expect_string+=('i;BL1: Booting BL31')
+ expect_string+=("i;BL1: Booting BL31;;${failures}")
fi