mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
test: Add functions to find the amount of allocated memory
The malloc() implementations provides a way of finding out the approximate amount of memory that is allocated. Add helper functions to make it easier to access this and see changes over time. This is useful for tests that want to check if memory has been allocated or freed. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
42a8db5c5b
commit
8109863f53
2 changed files with 30 additions and 0 deletions
|
@ -149,4 +149,20 @@ void ut_failf(struct unit_test_state *uts, const char *fname, int line,
|
||||||
/* Assert that an operation succeeds (returns 0) */
|
/* Assert that an operation succeeds (returns 0) */
|
||||||
#define ut_assertok(cond) ut_asserteq(0, cond)
|
#define ut_assertok(cond) ut_asserteq(0, cond)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ut_check_free() - Return the number of bytes free in the malloc() pool
|
||||||
|
*
|
||||||
|
* @return bytes free
|
||||||
|
*/
|
||||||
|
ulong ut_check_free(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ut_check_delta() - Return the number of bytes allocated/freed
|
||||||
|
*
|
||||||
|
* @last: Last value from ut_check_free
|
||||||
|
* @return free memory delta from @last; positive means more memory has been
|
||||||
|
* allocated, negative means less has been allocated (i.e. some is freed)
|
||||||
|
*/
|
||||||
|
long ut_check_delta(ulong last);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
14
test/ut.c
14
test/ut.c
|
@ -6,6 +6,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
|
#include <malloc.h>
|
||||||
#include <test/test.h>
|
#include <test/test.h>
|
||||||
#include <test/ut.h>
|
#include <test/ut.h>
|
||||||
|
|
||||||
|
@ -32,3 +33,16 @@ void ut_failf(struct unit_test_state *uts, const char *fname, int line,
|
||||||
putc('\n');
|
putc('\n');
|
||||||
uts->fail_count++;
|
uts->fail_count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ulong ut_check_free(void)
|
||||||
|
{
|
||||||
|
struct mallinfo info = mallinfo();
|
||||||
|
|
||||||
|
return info.uordblks;
|
||||||
|
}
|
||||||
|
|
||||||
|
long ut_check_delta(ulong last)
|
||||||
|
{
|
||||||
|
return ut_check_free() - last;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue