mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-09 05:05:17 -05:00
* Cleanup Makefiles * Add lcovrc configuration file * Add CMock test build directory to .gitignore * Add callgraph.py and filtercov.py scripts * Cleanup list Makefile and update list_utest.c with coverage tags * Add information about coverage filtering and running single test cases * Remove -fprofile-exclude-files for compatibility with older versions of gcc. Fix line endings (change to unix style) * Lint callgraph.py and filtercov.py. Print and error when no target functions are defined. * Indent with spaces when possible * Replace tabs with spaces and enable .RECIPEPREFIX * Add fake_port.h and related portmacro.h changes * Fix list makefile when bin directory is not available * Clean up grouped rules * Update makesfile.. Add "two_tests" example dir * Fix memory checker error * Move common makefile items to subdir.mk and testdir.mk includes * Update core_checker.py exclusions * Remove line from portmacro.h that doesn't match core_checker.py
41 lines
1.3 KiB
Makefile
41 lines
1.3 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 := list.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 := list_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 :=
|
|
|
|
# List any addiitonal flags needed by the preprocessor
|
|
CPPFLAGS += -DportUSING_MPU_WRAPPERS=0
|
|
|
|
# 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)))))
|
|
|
|
export
|
|
|
|
include ../testdir.mk
|