summaryrefslogtreecommitdiff
path: root/test/build.mk
diff options
context:
space:
mode:
authorTom Hughes <tomhughes@chromium.org>2022-06-24 13:17:36 -0700
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-07-07 18:43:27 +0000
commit54e603413f987e995486ede3ddccce1aebbe2c93 (patch)
tree6e95d9f7aebf437f8247af69310c77b2862ba34f /test/build.mk
parent12865c86276d642a526df5f7b053db62409fe421 (diff)
downloadchrome-ec-54e603413f987e995486ede3ddccce1aebbe2c93.tar.gz
Move standard library tests to their own file
The standard library functions are being consolidated in stdlib.c, so this test mirrors the same layout. BRANCH=none BUG=none TEST=make buildall -j Signed-off-by: Tom Hughes <tomhughes@chromium.org> Change-Id: I2d7f7671f23a0c4e5f09ef9e0d5d8c25688cd376 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3724489 Reviewed-by: Edward Hill <ecgh@chromium.org>
Diffstat (limited to 'test/build.mk')
-rw-r--r--test/build.mk12
1 files changed, 11 insertions, 1 deletions
diff --git a/test/build.mk b/test/build.mk
index 8c1b4b0d53..afe46453e0 100644
--- a/test/build.mk
+++ b/test/build.mk
@@ -4,7 +4,15 @@
# found in the LICENSE file.
# Device test binaries
-test-list-y ?= flash_write_protect pingpong timer_calib timer_dos timer_jump mutex utils utils_str
+test-list-y ?= flash_write_protect \
+ pingpong \
+ stdlib \
+ timer_calib \
+ timer_dos \
+ timer_jump \
+ mutex \
+ utils \
+ utils_str
#disable: powerdemo
# Emulator tests
@@ -83,6 +91,7 @@ test-list-host += sha256_unrolled
test-list-host += shmalloc
test-list-host += static_if
test-list-host += static_if_error
+test-list-host += stdlib
test-list-host += system
test-list-host += thermal
test-list-host += timer_dos
@@ -218,6 +227,7 @@ sha256-y=sha256.o
sha256_unrolled-y=sha256.o
shmalloc-y=shmalloc.o
static_if-y=static_if.o
+stdlib-y=stdlib.o
stm32f_rtc-y=stm32f_rtc.o
stress-y=stress.o
system-y=system.o