summaryrefslogtreecommitdiff
path: root/zephyr
diff options
context:
space:
mode:
authorRob Barnes <robbarnes@google.com>2023-05-09 13:16:06 -0600
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-05-11 00:42:44 +0000
commit5148f70c2592e08ff292e4b7da48d82d9e8b7724 (patch)
treee2985e8a504da52dd31952dfb766c88ea7af83c5 /zephyr
parent632c7c935a544b6036890d64ce808e9e130e6947 (diff)
downloadchrome-ec-5148f70c2592e08ff292e4b7da48d82d9e8b7724.tar.gz
safe_mode: Shorten strings
Many old boards are out of flash space, which makes porting safe mode to older boards difficult. To make this process smoother shorten strings so less flash space is needed. BUG=None TEST=Safe mode runs Change-Id: I0934f1a477b01e7c8f71241844ac0eefa093c5ea Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4519102 Commit-Queue: Rob Barnes <robbarnes@google.com> Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org> Tested-by: Rob Barnes <robbarnes@google.com> Auto-Submit: Rob Barnes <robbarnes@google.com>
Diffstat (limited to 'zephyr')
-rw-r--r--zephyr/test/system_safe_mode/src/system_safe_mode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/zephyr/test/system_safe_mode/src/system_safe_mode.c b/zephyr/test/system_safe_mode/src/system_safe_mode.c
index f75a27ec84..036bc4c8e0 100644
--- a/zephyr/test/system_safe_mode/src/system_safe_mode.c
+++ b/zephyr/test/system_safe_mode/src/system_safe_mode.c
@@ -177,7 +177,7 @@ ZTEST_USER(system_safe_mode, test_print_stack_contents)
uint16_t write_count;
regex_t regex;
- char *regex_str = "========== Stack Contents ===========\n"
+ char *regex_str = "Stack Contents\n"
"[0-9a-f]{8}: 00000000 00000001 00000002 00000003\n"
"[0-9a-f]{8}: 00000004 00000005 00000006 00000007\n"
"[0-9a-f]{8}: 00000008 00000009 0000000a 0000000b\n"