freertos: final test cleanup

This commit is contained in:
Zim Kalinowski 2022-10-25 17:41:06 +02:00
parent 96fce0c9c4
commit 09587b84c2
2 changed files with 2 additions and 1 deletions

View File

@ -15,6 +15,7 @@
#include "unity.h"
#include "test_utils.h"
#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2, ESP32C3)
typedef struct {
StreamBufferHandle_t sb;
SemaphoreHandle_t end_test;
@ -107,3 +108,4 @@ TEST_CASE("Send-receive stream buffer test", "[freertos]")
vStreamBufferDelete(tc.sb);
vSemaphoreDelete(tc.end_test);
}
#endif

View File

@ -13,7 +13,6 @@ CONFIGS = [
]
@pytest.mark.supported_targets
@pytest.mark.generic
@pytest.mark.parametrize('config', CONFIGS, indirect=True)
def test_freertos(dut: Dut) -> None: