xref: /OK3568_Linux_fs/external/mpp/osal/test/mpp_mem_test.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * Copyright 2015 Rockchip Electronics Co. LTD
3*4882a593Smuzhiyun  *
4*4882a593Smuzhiyun  * Licensed under the Apache License, Version 2.0 (the "License");
5*4882a593Smuzhiyun  * you may not use this file except in compliance with the License.
6*4882a593Smuzhiyun  * You may obtain a copy of the License at
7*4882a593Smuzhiyun  *
8*4882a593Smuzhiyun  *      http://www.apache.org/licenses/LICENSE-2.0
9*4882a593Smuzhiyun  *
10*4882a593Smuzhiyun  * Unless required by applicable law or agreed to in writing, software
11*4882a593Smuzhiyun  * distributed under the License is distributed on an "AS IS" BASIS,
12*4882a593Smuzhiyun  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*4882a593Smuzhiyun  * See the License for the specific language governing permissions and
14*4882a593Smuzhiyun  * limitations under the License.
15*4882a593Smuzhiyun  */
16*4882a593Smuzhiyun 
17*4882a593Smuzhiyun #define MODULE_TAG "mpp_mem_test"
18*4882a593Smuzhiyun 
19*4882a593Smuzhiyun #include "mpp_log.h"
20*4882a593Smuzhiyun #include "mpp_env.h"
21*4882a593Smuzhiyun #include "mpp_mem.h"
22*4882a593Smuzhiyun 
23*4882a593Smuzhiyun // TODO: need to add pressure test case and parameter scan case
24*4882a593Smuzhiyun 
main()25*4882a593Smuzhiyun int main()
26*4882a593Smuzhiyun {
27*4882a593Smuzhiyun     void *tmp = NULL;
28*4882a593Smuzhiyun 
29*4882a593Smuzhiyun     tmp = mpp_calloc(int, 100);
30*4882a593Smuzhiyun     if (tmp) {
31*4882a593Smuzhiyun         mpp_log("calloc  success ptr 0x%p\n", tmp);
32*4882a593Smuzhiyun     } else {
33*4882a593Smuzhiyun         mpp_log("calloc  failed\n");
34*4882a593Smuzhiyun     }
35*4882a593Smuzhiyun     if (tmp) {
36*4882a593Smuzhiyun         tmp = mpp_realloc(tmp, int, 200);
37*4882a593Smuzhiyun         if (tmp) {
38*4882a593Smuzhiyun             mpp_log("realloc success ptr 0x%p\n", tmp);
39*4882a593Smuzhiyun         } else {
40*4882a593Smuzhiyun             mpp_log("realloc failed\n");
41*4882a593Smuzhiyun         }
42*4882a593Smuzhiyun     }
43*4882a593Smuzhiyun     mpp_free(tmp);
44*4882a593Smuzhiyun     mpp_log("mpp_mem_test done\n");
45*4882a593Smuzhiyun 
46*4882a593Smuzhiyun     return 0;
47*4882a593Smuzhiyun }
48