]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/test/test-architecture.c
tree-wide: use IN_SET macro (#6977)
[thirdparty/systemd.git] / src / test / test-architecture.c
1 /***
2 This file is part of systemd.
3
4 Copyright 2014 Kay Sievers
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include "architecture.h"
21 #include "log.h"
22 #include "util.h"
23 #include "virt.h"
24
25 int main(int argc, char *argv[]) {
26 int a, v;
27
28 v = detect_virtualization();
29 if (IN_SET(v, -EPERM, -EACCES))
30 return EXIT_TEST_SKIP;
31
32 assert_se(v >= 0);
33
34 log_info("virtualization=%s id=%s",
35 VIRTUALIZATION_IS_CONTAINER(v) ? "container" :
36 VIRTUALIZATION_IS_VM(v) ? "vm" : "n/a",
37 virtualization_to_string(v));
38
39 a = uname_architecture();
40 assert_se(a >= 0);
41
42 log_info("uname architecture=%s", architecture_to_string(a));
43
44 a = native_architecture();
45 assert_se(a >= 0);
46
47 log_info("native architecture=%s", architecture_to_string(a));
48
49 log_info("primary library architecture=" LIB_ARCH_TUPLE);
50
51 return 0;
52 }