summaryrefslogtreecommitdiff
path: root/tests/sys_procfs_test.cpp
blob: 5e0a0b0245fc0e6d55ae93247b650bd76e1f9d53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
 * Copyright (C) 2015 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <gtest/gtest.h>

#include <sys/procfs.h>

TEST(sys_procfs, types) {
  elf_greg_t reg;
  memset(&reg, 0, sizeof(reg));

  elf_gregset_t regs;
  memset(&regs, 0, sizeof(regs));

  elf_fpregset_t fp_regs;
  memset(&fp_regs, 0, sizeof(fp_regs));

  prgregset_t pr_g_regs;
  memset(&pr_g_regs, 0, sizeof(pr_g_regs));

  prfpregset_t pr_fp_regs;
  memset(&pr_fp_regs, 0, sizeof(pr_fp_regs));

  static_assert(sizeof(prgregset_t) == sizeof(elf_gregset_t), "");
  static_assert(sizeof(prfpregset_t) == sizeof(elf_fpregset_t), "");
}

TEST(sys_procfs, constants) {
  // NGREG != ELF_NGREG (https://github.com/android/ndk/issues/1347)
  static_assert(sizeof(gregset_t) / sizeof(greg_t) == NGREG);

#if defined(__arm__)
  static_assert(sizeof(user_regs) / sizeof(elf_greg_t) == ELF_NGREG);
#elif defined(__aarch64__)
  static_assert(sizeof(user_pt_regs) / sizeof(elf_greg_t) == ELF_NGREG);
#else
  static_assert(sizeof(user_regs_struct) / sizeof(elf_greg_t) == ELF_NGREG);
#endif
}