freertos: Enable FPU ISR core pinning test for IDF FreeRTOS

This commit is contained in:
Darian Leung
2022-10-12 22:14:27 +08:00
parent 9f7f964363
commit 423fb361e7

View File

@@ -106,9 +106,6 @@ Expected:
- The ISR using the FPU will not affect the unpinned task's affinity
*/
// Known issue in IDF FreeRTOS (IDF-6068), already fixed in SMP FreeRTOS
#if CONFIG_FREERTOS_SMP
static void unpinned_task(void *arg)
{
// Disable scheduling/preemption to make sure the current task doesn't switch cores
@@ -159,6 +156,4 @@ TEST_CASE("FPU: Level 1 ISR does not affect unpinned task", "[freertos]")
vTaskDelay(10); // Short delay to allow task memory to be freed
}
#endif // CONFIG_FREERTOS_SMP
#endif // SOC_CPU_HAS_FPU && CONFIG_FREERTOS_FPU_IN_ISR