From 38a57333ed33cbe889efca3b582c22b522cf66b0 Mon Sep 17 00:00:00 2001 From: Gaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com> Date: Sat, 19 Aug 2023 00:12:14 +0530 Subject: [PATCH] Fix unit test for Kernel PR #760 (#1075) * Fix unit test for Kernel PR #760 * Update kernel submodule pointer --------- Signed-off-by: Gaurav Aggarwal --- FreeRTOS/Source | 2 +- FreeRTOS/Test/CMock/tasks/tasks_1_utest.c | 11 +++++------ manifest.yml | 2 +- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/FreeRTOS/Source b/FreeRTOS/Source index cdd3678c29..7372519cba 160000 --- a/FreeRTOS/Source +++ b/FreeRTOS/Source @@ -1 +1 @@ -Subproject commit cdd3678c29b5064db24d34042acc974c57a0babb +Subproject commit 7372519cba39922ce5aeb92b8931cf8694b78bd2 diff --git a/FreeRTOS/Test/CMock/tasks/tasks_1_utest.c b/FreeRTOS/Test/CMock/tasks/tasks_1_utest.c index 01ee57a41f..dfec028877 100644 --- a/FreeRTOS/Test/CMock/tasks/tasks_1_utest.c +++ b/FreeRTOS/Test/CMock/tasks/tasks_1_utest.c @@ -1455,11 +1455,10 @@ void test_vTaskPrioritySet_success_lt_curr_prio_not_curr_task( void ) ASSERT_PORT_YIELD_WITHIN_API_NOT_CALLED(); } -/* This test ensures that if the base priority is different greater than that the current - * priority the resulting base will be equal to the new priority while the - * current priority will be equal to the inherited priority - * and port yield hook will be called - * */ +/* This test ensures that if the base priority is different than that the current + * priority, the resulting base and current priority will be equal to the new + * priority when the new priority is greater than the inherited priority. + */ void test_vTaskPrioritySet_success_gt_curr_prio_diff_base( void ) { TaskHandle_t taskHandle, taskHandle2; @@ -1491,7 +1490,7 @@ void test_vTaskPrioritySet_success_gt_curr_prio_diff_base( void ) /* Validations */ TEST_ASSERT_EQUAL( 5, ptcb->uxBasePriority ); - TEST_ASSERT_EQUAL( 4, ptcb->uxPriority ); + TEST_ASSERT_EQUAL( 5, ptcb->uxPriority ); ASSERT_PORT_YIELD_WITHIN_API_CALLED(); } diff --git a/manifest.yml b/manifest.yml index 4848dcacc7..e499ce8355 100644 --- a/manifest.yml +++ b/manifest.yml @@ -4,7 +4,7 @@ description: "This is the standard distribution of FreeRTOS." dependencies: - name: "FreeRTOS-Kernel" - version: "cdd3678c2" + version: "7372519cb" repository: type: "git" url: "https://github.com/FreeRTOS/FreeRTOS-Kernel.git"