summaryrefslogtreecommitdiff
path: root/zephyr/test/ec_app/zmake.yaml
diff options
context:
space:
mode:
authorJeremy Bettis <jbettis@google.com>2021-04-01 10:54:49 -0600
committerCommit Bot <commit-bot@chromium.org>2021-04-02 17:10:22 +0000
commit00d0b8d09d5cfc75dbf6252b87990e0646caeb22 (patch)
tree3786fd206f94bae71352f72fff144e17e3f13e06 /zephyr/test/ec_app/zmake.yaml
parentd7d83e19a725e43301606b26c08c0358fca43833 (diff)
downloadchrome-ec-00d0b8d09d5cfc75dbf6252b87990e0646caeb22.tar.gz
zephyr: New test of ec app
Change zephy/app/ec/main.c:main to instead be named ec_app_main, so that it can be called from tests, and created a trivial stub main to call it. Fix up the CMake files for this change. Add a new ec_app test which calls the ec_app_main() and verifies that hooks of HOOK_INIT type are called. The CONFIG_PLATFORM_EC_HOOKS is the only config currently enabled in tests, so that is the only thing tested for now. BUG=b:184273560 TEST=zmake configure --test zephyr/test/ec_app BRANCH=none Change-Id: I84ca9b36d3f387629ff5bd83463429d762cc2301 Signed-off-by: Jeremy Bettis <jbettis@google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2799914 Tested-by: Jeremy Bettis <jbettis@chromium.org> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Keith Short <keithshort@chromium.org> Commit-Queue: Keith Short <keithshort@chromium.org>
Diffstat (limited to 'zephyr/test/ec_app/zmake.yaml')
-rw-r--r--zephyr/test/ec_app/zmake.yaml10
1 files changed, 10 insertions, 0 deletions
diff --git a/zephyr/test/ec_app/zmake.yaml b/zephyr/test/ec_app/zmake.yaml
new file mode 100644
index 0000000000..4804127f1b
--- /dev/null
+++ b/zephyr/test/ec_app/zmake.yaml
@@ -0,0 +1,10 @@
+# Copyright 2021 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+board: native_posix
+supported-zephyr-versions:
+ - v2.5
+toolchain: llvm
+output-type: elf
+is-test: true