freertos: re-enable mutext test for esp32s2beta

This commit is contained in:
Mahavir Jain
2019-12-16 11:53:46 +05:30
parent 8b05cf41ad
commit 2e73c2818b
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ static void mutex_release_task(void* arg)
TEST_FAIL_MESSAGE("should not be reached"); TEST_FAIL_MESSAGE("should not be reached");
} }
TEST_CASE_ESP32("mutex released not by owner causes an assert", "[freertos][reset=abort,SW_CPU_RESET]") TEST_CASE("mutex released not by owner causes an assert", "[freertos][reset=abort,SW_CPU_RESET]")
{ {
SemaphoreHandle_t mutex = xSemaphoreCreateMutex(); SemaphoreHandle_t mutex = xSemaphoreCreateMutex();
xSemaphoreTake(mutex, portMAX_DELAY); xSemaphoreTake(mutex, portMAX_DELAY);

View File

@@ -453,7 +453,7 @@ UT_034:
UT_035: UT_035:
extends: .unit_test_template extends: .unit_test_template
parallel: 20 parallel: 30
tags: tags:
- ESP32S2BETA_IDF - ESP32S2BETA_IDF
- UT_T1_1 - UT_T1_1