fix(heap): Add missing test for heap task tracking config

- Add sdkconfig.ci.task_tracking that runs generic tests
with heap task tracking enabled.
- Add task_tracking.c that includes a test checking that
a created task that allocates memory is added to the list
of task tracked by the heap task tracking feature.
This commit is contained in:
Guillaume Souchere
2023-10-30 09:16:32 +01:00
parent 872bc74954
commit e8f046358d
4 changed files with 103 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ from pytest_embedded import Dut
[
'no_poisoning',
'light_poisoning',
'comprehensive_poisoning'
'comprehensive_poisoning',
]
)
def test_heap_poisoning(dut: Dut) -> None: