mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-17 10:17:45 -04:00
* Add unit test for FreeRTOS SMP to verify SMP scheduler logic in tasks.c which is enclosed by `configNUMBER_OF_CORES > 1`. --------- Co-authored-by: Joshua Zarr <joshzarr@amazon.com> Co-authored-by: Anubhav Rawal <rawalexe@amazon.com> Co-authored-by: Alfred Gedeon <alfred2g@hotmail.com> Co-authored-by: Adam Scislowicz <adamds@amazon.com> Co-authored-by: jannusi <121577776+jannusi@users.noreply.github.com> Co-authored-by: Krishna Vamsi Tallapaneni <124737189+vamsitas@users.noreply.github.com> Co-authored-by: Kody Stribrny <kstribrn@amazon.com> Co-authored-by: kar-rahul-aws <118818625+kar-rahul-aws@users.noreply.github.com>
54 lines
1.8 KiB
Makefile
54 lines
1.8 KiB
Makefile
# indent with spaces
|
|
.RECIPEPREFIX := $(.RECIPEPREFIX) $(.RECIPEPREFIX)
|
|
|
|
# Do not move this line below the include
|
|
MAKEFILE_ABSPATH := $(abspath $(lastword $(MAKEFILE_LIST)))
|
|
|
|
include ../../makefile.in
|
|
|
|
# PROJECT_SRC lists the .c files under test
|
|
PROJECT_SRC := tasks.c
|
|
|
|
# PROJECT_DEPS_SRC list the .c file that are dependencies of PROJECT_SRC files
|
|
# Files in PROJECT_DEPS_SRC are excluded from coverage measurements
|
|
#PROJECT_DEPS_SRC :=
|
|
|
|
# PROJECT_HEADER_DEPS: headers that should be excluded from coverage measurements.
|
|
PROJECT_HEADER_DEPS := FreeRTOS.h
|
|
|
|
# SUITE_UT_SRC: .c files that contain test cases (must end in _utest.c)
|
|
SUITE_UT_SRC := config_assert_utest.c
|
|
|
|
# SUITE_SUPPORT_SRC: .c files used for testing that do not contain test cases.
|
|
# Paths are relative to PROJECT_DIR
|
|
#SUITE_SUPPORT_SRC :=
|
|
|
|
|
|
# List the headers used by PROJECT_SRC that you would like to mock
|
|
MOCK_FILES_FP += $(KERNEL_DIR)/include/list.h
|
|
MOCK_FILES_FP += $(UT_ROOT_DIR)/smp/config_assert/list_macros.h
|
|
MOCK_FILES_FP += $(KERNEL_DIR)/include/queue.h
|
|
MOCK_FILES_FP += $(KERNEL_DIR)/include/timers.h
|
|
MOCK_FILES_FP += $(UT_ROOT_DIR)/config/fake_assert.h
|
|
MOCK_FILES_FP += $(UT_ROOT_DIR)/config/fake_port.h
|
|
MOCK_FILES_FP += $(UT_ROOT_DIR)/config/portmacro.h
|
|
MOCK_FILES_FP += $(UT_ROOT_DIR)/smp/config_assert/local_portable.h
|
|
|
|
# List any addiitonal flags needed by the preprocessor
|
|
CPPFLAGS += -include list_macros.h
|
|
|
|
# List any addiitonal flags needed by the compiler
|
|
CFLAGS +=
|
|
|
|
# Try not to edit beyond this line unless necessary.
|
|
|
|
# Project is determined based on path: $(UT_ROOT_DIR)/$(PROJECT)
|
|
PROJECT := $(lastword $(subst /, ,$(dir $(abspath $(MAKEFILE_ABSPATH)/../))))
|
|
SUITE := $(lastword $(subst /, ,$(dir $(MAKEFILE_ABSPATH))))
|
|
|
|
# Make variables available to included makefile
|
|
export
|
|
|
|
include ../../testdir.mk
|
|
|
|
|