From 8e28226935e13b3593db13cf501f3d60b32b2050 Mon Sep 17 00:00:00 2001 From: Mahavir Jain Date: Mon, 9 Dec 2019 12:32:11 +0530 Subject: [PATCH] Disable few test cases for ESP32S2BETA These test cases will be fixed in subsequent MR --- components/freertos/test/test_freertos_mutex.c | 2 +- components/freertos/test/test_thread_local.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/freertos/test/test_freertos_mutex.c b/components/freertos/test/test_freertos_mutex.c index 51697984e7..11c761dded 100644 --- a/components/freertos/test/test_freertos_mutex.c +++ b/components/freertos/test/test_freertos_mutex.c @@ -12,7 +12,7 @@ static void mutex_release_task(void* arg) TEST_FAIL_MESSAGE("should not be reached"); } -TEST_CASE("mutex released not by owner causes an assert", "[freertos][reset=abort,SW_CPU_RESET]") +TEST_CASE_ESP32("mutex released not by owner causes an assert", "[freertos][reset=abort,SW_CPU_RESET]") { SemaphoreHandle_t mutex = xSemaphoreCreateMutex(); xSemaphoreTake(mutex, portMAX_DELAY); diff --git a/components/freertos/test/test_thread_local.c b/components/freertos/test/test_thread_local.c index 79ed8bb7b8..cda1a25f02 100644 --- a/components/freertos/test/test_thread_local.c +++ b/components/freertos/test/test_thread_local.c @@ -86,7 +86,7 @@ static void task_test_tls(void *arg) } } -TEST_CASE("TLS test", "[freertos]") +TEST_CASE_ESP32("TLS test", "[freertos]") { const size_t stack_size = 3072; StackType_t s_stack[stack_size]; /* with 8KB test task stack (default) this test still has ~3KB headroom */