User story #1622
Add memory leak check to tests
Status:
New
Priority:
Normal
Assignee:
-
Target version:
-
Start date:
04.01.2024
Due date:
% Done:
0%
Estimated time:
Git branch (link):
Git merge to develop (link):
SVN commit (link/?p=rev):
Description
Proposal by Luca B.
#include <stdio.h>
#include <malloc.h>
int main() {
struct mallinfo m = mallinfo();
printf("Heap space available: %d bytes\n", m.fordblks);
return 0;
}
History
#1 Updated by André Neto 23 days ago
- Status changed from Code: Impl to New