pthread: updated qemu test scripts

This commit is contained in:
Zim Kalinowski
2023-06-13 13:04:45 +02:00
parent 213504238f
commit 3e48e008e2
2 changed files with 7 additions and 10 deletions
@@ -34,8 +34,8 @@ void setUp(void)
void tearDown(void)
{
// Add a short delay of 100ms to allow the idle task to free an remaining memory
vTaskDelay(pdMS_TO_TICKS(100));
// Add a short delay of 200ms to allow the idle task to free remaining memory
vTaskDelay(pdMS_TO_TICKS(200));
size_t after_free_8bit = heap_caps_get_free_size(MALLOC_CAP_8BIT);
size_t after_free_32bit = heap_caps_get_free_size(MALLOC_CAP_32BIT);
check_leak(before_free_8bit, after_free_8bit, "8BIT");