Merge branch 'bugfix/freertos_ut_suspend_v4.2' into 'release/v4.2'

freertos: Increases delta for UT - Test suspend-resume CPU. The number of... (v4.2)

See merge request espressif/esp-idf!14631
This commit is contained in:
Zim Kalinowski
2021-08-05 05:13:24 +00:00

View File

@@ -314,8 +314,8 @@ static void test_scheduler_suspend2(int cpu)
printf("count_tick[cpu0] = %d, count_tick[cpu1] = %d\n", count_tick[0], count_tick[1]);
TEST_ASSERT_INT_WITHIN(1, waiting_ms * 2, count_tick[0]);
TEST_ASSERT_INT_WITHIN(1, waiting_ms * 2, count_tick[1]);
TEST_ASSERT_INT_WITHIN(portTICK_PERIOD_MS * 2, waiting_ms * 2, count_tick[0]);
TEST_ASSERT_INT_WITHIN(portTICK_PERIOD_MS * 2, waiting_ms * 2, count_tick[1]);
printf("\n");
}