Skip to content

Commit f4a11d3

Browse files
committed
Take in the upstream test changes
1 parent 1ddb692 commit f4a11d3

File tree

50 files changed

+60
-59
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+60
-59
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
steps:
8888
- uses: actions/checkout@v3
8989
- name: Check formatting
90-
uses: FreeRTOS/CI-CD-Github-Actions/formatting@v2
90+
uses: FreeRTOS/CI-CD-Github-Actions/formatting@main
9191
with:
9292
path: ./
9393

manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description:
66
license: "MIT"
77
dependencies:
88
- name: "FreeRTOS-Kernel"
9-
version: "V10.4.5"
9+
version: "V10.6.1"
1010
license: "MIT"
1111
repository:
1212
type: "git"

test/FreeRTOS-Kernel

Submodule FreeRTOS-Kernel updated 776 files

test/unit-test/ConfigFiles/portmacro.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,16 @@
113113
#define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void * pvParameters )
114114
/*-----------------------------------------------------------*/
115115

116+
/** We need to define it here because CMock does not recognize the
117+
* #if ( portUSING_MPU_WRAPPERS == 1 ) guard around xTaskGetMPUSettings
118+
* and then complains about the missing xMPU_SETTINGS type in the
119+
* generated mocks. */
120+
typedef struct MPU_SETTINGS
121+
{
122+
uint32_t ulDummy;
123+
} xMPU_SETTINGS;
124+
125+
116126
/*
117127
* Tasks run in their own pthreads and context switches between them
118128
* are always a full memory barrier. ISRs are emulated as signals

test/unit-test/FreeRTOS_ARP/ut.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ list(APPEND mock_include_list
2727
.
2828
${TCP_INCLUDE_DIRS}
2929
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/include
30-
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/portable/ThirdParty/GCC/Posix
3130
${MODULE_ROOT_DIR}/test/unit-test/ConfigFiles
31+
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/portable/ThirdParty/GCC/Posix
3232
)
3333

3434
#list the definitions of your mocks to control what to be included

test/unit-test/FreeRTOS_BitConfig/ut.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ list(APPEND mock_include_list
2323
.
2424
${TCP_INCLUDE_DIRS}
2525
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/include
26-
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/portable/ThirdParty/GCC/Posix
2726
${MODULE_ROOT_DIR}/test/unit-test/ConfigFiles
27+
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/portable/ThirdParty/GCC/Posix
2828
${MODULE_ROOT_DIR}/test/unit-test/${project_name}
2929
)
3030

test/unit-test/FreeRTOS_DHCPv6/ut.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ list(APPEND mock_include_list
3232
.
3333
${TCP_INCLUDE_DIRS}
3434
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/include
35-
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/portable/ThirdParty/GCC/Posix
3635
${MODULE_ROOT_DIR}/test/unit-test/ConfigFiles
36+
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/portable/ThirdParty/GCC/Posix
3737
${MODULE_ROOT_DIR}/test/unit-test/${project_name}
3838
)
3939

test/unit-test/FreeRTOS_ICMP/ut.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ list(APPEND mock_include_list
3737
.
3838
${TCP_INCLUDE_DIRS}
3939
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/include
40-
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/portable/ThirdParty/GCC/Posix
4140
${MODULE_ROOT_DIR}/test/unit-test/ConfigFiles
41+
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/portable/ThirdParty/GCC/Posix
4242
${MODULE_ROOT_DIR}/test/unit-test/${project_name}
4343
)
4444

test/unit-test/FreeRTOS_ICMP_wo_assert/ut.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ list(APPEND mock_include_list
3636
.
3737
${TCP_INCLUDE_DIRS}
3838
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/include
39-
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/portable/ThirdParty/GCC/Posix
4039
${MODULE_ROOT_DIR}/test/unit-test/ConfigFiles
40+
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/portable/ThirdParty/GCC/Posix
4141
${MODULE_ROOT_DIR}/test/unit-test/${project_name}
4242
)
4343

test/unit-test/FreeRTOS_IP/ut.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ list(APPEND mock_include_list
4444
${TCP_INCLUDE_DIRS}
4545
${MODULE_ROOT_DIR}/test/unit-test/${project_name}
4646
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/include
47-
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/portable/ThirdParty/GCC/Posix
4847
${MODULE_ROOT_DIR}/test/unit-test/ConfigFiles
48+
${MODULE_ROOT_DIR}/test/FreeRTOS-Kernel/portable/ThirdParty/GCC/Posix
4949
)
5050

5151
set(mock_define_list "")

0 commit comments

Comments
 (0)