Gitiles
Code Review
Sign In
review.blissroms.org
/
platform_external_jemalloc
/
refs/heads/n7.1-caf
/
.
/
test
/
unit
/
a0.c
blob: b9ba45a3d4af6dc8f844638ab5d93ac3568d5d4c [
file
] [
log
] [
blame
]
Jason Evans
0c12dca
2016-05-07 12:42:31 -0700
[
diff
] [
blame
]
1
#include
"test/jemalloc_test.h"
2
3
TEST_BEGIN
(
test_a0
)
4
{
5
void
*
p
;
6
7
p
=
a0malloc
(
1
);
8
assert_ptr_not_null
(
p
,
"Unexpected a0malloc() error"
);
9
a0dalloc
(
p
);
10
}
11
TEST_END
12
13
int
14
main
(
void
)
15
{
16
17
return
(
test_no_malloc_init
(
18
test_a0
));
19
}