From bbac9594709e2c6fc941d0ba6f3d0f9fa524519f Mon Sep 17 00:00:00 2001 From: Rajkumar Kanagaraj Date: Tue, 7 Sep 2021 12:18:33 +0100 Subject: [PATCH] Update hal CMake to include stack_size_unification greentea test dir --- hal/CMakeLists.txt | 2 +- hal/tests/TESTS/CMakeLists.txt | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 hal/tests/TESTS/CMakeLists.txt diff --git a/hal/CMakeLists.txt b/hal/CMakeLists.txt index 3af169e0f1..9f442a42fc 100644 --- a/hal/CMakeLists.txt +++ b/hal/CMakeLists.txt @@ -3,7 +3,7 @@ if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME AND BUILD_TESTING) if(BUILD_GREENTEA_TESTS) - # add greentea test + add_subdirectory(tests/TESTS) else() add_subdirectory(tests/UNITTESTS) endif() diff --git a/hal/tests/TESTS/CMakeLists.txt b/hal/tests/TESTS/CMakeLists.txt new file mode 100644 index 0000000000..8947333422 --- /dev/null +++ b/hal/tests/TESTS/CMakeLists.txt @@ -0,0 +1,4 @@ +# Copyright (c) 2021 ARM Limited. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +add_subdirectory(mbed_hal/stack_size_unification)