]> git.proxmox.com Git - systemd.git/blame - src/test/test-tables.c
Imported Upstream version 218
[systemd.git] / src / test / test-tables.c
CommitLineData
14228c0d
MB
1/***
2 This file is part of systemd
3
4 Copyright 2013 Zbigniew Jędrzejewski-Szmek
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 "automount.h"
21#include "cgroup.h"
5eef597e 22#include "compress.h"
14228c0d
MB
23#include "condition.h"
24#include "device.h"
25#include "execute.h"
26#include "exit-status.h"
27#include "install.h"
28#include "job.h"
29#include "kill.h"
30#include "log.h"
31#include "logs-show.h"
32#include "mount.h"
33#include "path-lookup.h"
34#include "path.h"
35#include "scope.h"
36#include "service.h"
37#include "slice.h"
38#include "snapshot.h"
39#include "socket-util.h"
40#include "socket.h"
41#include "swap.h"
42#include "target.h"
43#include "timer.h"
44#include "unit-name.h"
45#include "unit.h"
46#include "util.h"
5eef597e
MP
47#include "architecture.h"
48#include "link-config.h"
49#include "bus-policy.h"
50#include "journald-server.h"
f47781d8 51#include "locale-util.h"
14228c0d
MB
52
53#include "test-tables.h"
54
55int main(int argc, char **argv) {
5eef597e 56 test_table(architecture, ARCHITECTURE);
14228c0d
MB
57 test_table(automount_result, AUTOMOUNT_RESULT);
58 test_table(automount_state, AUTOMOUNT_STATE);
5eef597e
MP
59 test_table(bus_policy_access, BUS_POLICY_ACCESS);
60 test_table(busname_result, BUSNAME_RESULT);
61 test_table(busname_state, BUSNAME_STATE);
14228c0d
MB
62 test_table(cgroup_device_policy, CGROUP_DEVICE_POLICY);
63 test_table(condition_type, CONDITION_TYPE);
f47781d8
MP
64 test_table(assert_type, CONDITION_TYPE);
65 test_table(condition_result, CONDITION_RESULT);
14228c0d
MB
66 test_table(device_state, DEVICE_STATE);
67 test_table(exec_input, EXEC_INPUT);
68 test_table(exec_output, EXEC_OUTPUT);
5eef597e 69 test_table(failure_action, FAILURE_ACTION);
14228c0d
MB
70 test_table(job_mode, JOB_MODE);
71 test_table(job_result, JOB_RESULT);
72 test_table(job_state, JOB_STATE);
73 test_table(job_type, JOB_TYPE);
74 test_table(kill_mode, KILL_MODE);
75 test_table(kill_who, KILL_WHO);
76 test_table(log_target, LOG_TARGET);
5eef597e
MP
77 test_table(mac_policy, MACPOLICY);
78 test_table(manager_state, MANAGER_STATE);
14228c0d
MB
79 test_table(mount_exec_command, MOUNT_EXEC_COMMAND);
80 test_table(mount_result, MOUNT_RESULT);
81 test_table(mount_state, MOUNT_STATE);
5eef597e 82 test_table(name_policy, NAMEPOLICY);
14228c0d
MB
83 test_table(notify_access, NOTIFY_ACCESS);
84 test_table(output_mode, OUTPUT_MODE);
85 test_table(path_result, PATH_RESULT);
86 test_table(path_state, PATH_STATE);
87 test_table(path_type, PATH_TYPE);
5eef597e
MP
88 test_table(policy_item_class, POLICY_ITEM_CLASS);
89 test_table(policy_item_type, POLICY_ITEM_TYPE);
90 test_table(protect_home, PROTECT_HOME);
91 test_table(protect_system, PROTECT_SYSTEM);
92 test_table(rlimit, RLIMIT);
14228c0d
MB
93 test_table(scope_result, SCOPE_RESULT);
94 test_table(scope_state, SCOPE_STATE);
95 test_table(service_exec_command, SERVICE_EXEC_COMMAND);
96 test_table(service_restart, SERVICE_RESTART);
97 test_table(service_result, SERVICE_RESULT);
98 test_table(service_state, SERVICE_STATE);
99 test_table(service_type, SERVICE_TYPE);
100 test_table(slice_state, SLICE_STATE);
101 test_table(snapshot_state, SNAPSHOT_STATE);
102 test_table(socket_address_bind_ipv6_only, SOCKET_ADDRESS_BIND_IPV6_ONLY);
103 test_table(socket_exec_command, SOCKET_EXEC_COMMAND);
104 test_table(socket_result, SOCKET_RESULT);
105 test_table(socket_state, SOCKET_STATE);
5eef597e
MP
106 test_table(split_mode, SPLIT);
107 test_table(storage, STORAGE);
14228c0d
MB
108 test_table(swap_exec_command, SWAP_EXEC_COMMAND);
109 test_table(swap_result, SWAP_RESULT);
110 test_table(swap_state, SWAP_STATE);
14228c0d
MB
111 test_table(target_state, TARGET_STATE);
112 test_table(timer_base, TIMER_BASE);
113 test_table(timer_result, TIMER_RESULT);
114 test_table(timer_state, TIMER_STATE);
115 test_table(unit_active_state, UNIT_ACTIVE_STATE);
116 test_table(unit_dependency, UNIT_DEPENDENCY);
117 test_table(unit_file_change_type, UNIT_FILE_CHANGE_TYPE);
5eef597e 118 test_table(unit_file_preset_mode, UNIT_FILE_PRESET);
14228c0d
MB
119 test_table(unit_file_state, UNIT_FILE_STATE);
120 test_table(unit_load_state, UNIT_LOAD_STATE);
121 test_table(unit_type, UNIT_TYPE);
f47781d8 122 test_table(locale_variable, VARIABLE_LC);
14228c0d 123
5eef597e
MP
124 test_table_sparse(object_compressed, OBJECT_COMPRESSED);
125
14228c0d
MB
126 return EXIT_SUCCESS;
127}