pagemap_test.cpp revision 72f4a2f30765fe17ba0dbf178c61fa953154108a
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 <gtest/gtest.h>
18
19#include <pagemap/pagemap.h>
20
21TEST(pagemap, maps) {
22  pm_kernel_t* kernel;
23  ASSERT_EQ(0, pm_kernel_create(&kernel));
24
25  pm_process_t* process;
26  ASSERT_EQ(0, pm_process_create(kernel, getpid(), &process));
27
28  pm_map_t** maps;
29  size_t num_maps;
30  ASSERT_EQ(0, pm_process_maps(process, &maps, &num_maps));
31
32  bool found_heap = false;
33  bool found_stack = false;
34  for (size_t i = 0; i < num_maps; i++) {
35    if (strcmp(maps[i]->name, "[heap]") == 0) found_heap = true;
36    if (strcmp(maps[i]->name, "[stack]") == 0) found_stack = true;
37  }
38
39  ASSERT_TRUE(found_heap);
40  ASSERT_TRUE(found_stack);
41
42  free(maps);
43  pm_process_destroy(process);
44  pm_kernel_destroy(kernel);
45}
46