Disable few test cases for ESP32S2BETA

These test cases will be fixed in subsequent MR
This commit is contained in:
Mahavir Jain 2019-12-09 12:32:11 +05:30
parent a737fd4865
commit 8e28226935
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_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);

View file

@ -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 */