zephyr/tests/arch/common/stack_unwind/CMakeLists.txt
Yong Cong Sin b8b98c2c29 tests: arch: common: add stack_unwind test
Added test for archs that support it. It triggers an exception
and verify that the fatal message has stack unwind info.

Signed-off-by: Yong Cong Sin <ycsin@meta.com>
2024-04-20 13:54:43 -04:00

10 lines
260 B
CMake

# Copyright (c) 2024 Meta
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(stack_unwind_test)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})