mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-08 12:45:22 -05:00
Add event_groups.c Unit Test (#536)
* Added event_groups.c Unit Test. * Formatted and more comments. * Formatted * Split some test cases and add comment and coverage tag. * Update test cases. * Remove xEventGroupDelete Invalid Input test case, since the implementation does not handle this.
This commit is contained in:
parent
19271ddc8d
commit
fb0c517148
5 changed files with 952 additions and 4 deletions
|
|
@ -7,11 +7,12 @@ export CC ?= /usr/local/bin/gcc
|
|||
export LD ?= /usr/local/bin/ld
|
||||
|
||||
# Add units here when adding a new unit test directory with the same name
|
||||
UNITS += list
|
||||
#UNITS += list
|
||||
#UNITS += queue
|
||||
#UNITS += timers
|
||||
UNITS += stream_buffer
|
||||
UNITS += message_buffer
|
||||
#UNITS += timers
|
||||
#UNITS += stream_buffer
|
||||
#UNITS += message_buffer
|
||||
UNITS += event_groups
|
||||
|
||||
COVINFO := $(BUILD_DIR)/cmock_test.info
|
||||
LCOV_LIST := $(foreach unit,$(UNITS),$(GENERATED_DIR)/$(unit).info )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue