1 /*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include <pagemap/pagemap.h>
18
19 #include <string>
20
21 #include <gtest/gtest.h>
22
TEST(pagemap,maps)23 TEST(pagemap, maps) {
24 pm_kernel_t* kernel;
25 ASSERT_EQ(0, pm_kernel_create(&kernel));
26
27 pm_process_t* process;
28 ASSERT_EQ(0, pm_process_create(kernel, getpid(), &process));
29
30 pm_map_t** maps;
31 size_t num_maps;
32 ASSERT_EQ(0, pm_process_maps(process, &maps, &num_maps));
33
34 bool found_heap = false;
35 bool found_stack = false;
36 for (size_t i = 0; i < num_maps; i++) {
37 std::string name(maps[i]->name);
38 if (name == "[heap]" || name == "[anon:libc_malloc]") found_heap = true;
39 if (name == "[stack]") found_stack = true;
40 }
41
42 ASSERT_TRUE(found_heap);
43 ASSERT_TRUE(found_stack);
44
45 free(maps);
46 pm_process_destroy(process);
47 pm_kernel_destroy(kernel);
48 }
49