X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Ftest%2Ftest-tables.c;h=0e5ab1645fb85a8c2badc93ce2faf6495f92eff9;hb=adfe5671ef794099068038dfccbf1eb5134433c8;hp=3b7800cf37ba99f2fc4c8f37e237ff3886dcb2d2;hpb=daabe5491ee0c78b735336c9e69b7f6ea57464e0;p=elogind.git diff --git a/src/test/test-tables.c b/src/test/test-tables.c index 3b7800cf3..0e5ab1645 100644 --- a/src/test/test-tables.c +++ b/src/test/test-tables.c @@ -19,17 +19,16 @@ #include "automount.h" #include "cgroup.h" +#include "compress.h" #include "condition.h" #include "device.h" #include "execute.h" -#include "exit-status.h" #include "install.h" #include "job.h" #include "kill.h" #include "log.h" #include "logs-show.h" #include "mount.h" -#include "path-lookup.h" #include "path.h" #include "scope.h" #include "service.h" @@ -43,18 +42,30 @@ #include "unit-name.h" #include "unit.h" #include "util.h" -#include "syscall-list.h" +#include "architecture.h" +#include "link-config.h" +#include "bus-xml-policy.h" +#include "busname.h" +#include "journald-server.h" +#include "locale-util.h" #include "test-tables.h" int main(int argc, char **argv) { + test_table(architecture, ARCHITECTURE); test_table(automount_result, AUTOMOUNT_RESULT); test_table(automount_state, AUTOMOUNT_STATE); + test_table(bus_policy_access, BUS_POLICY_ACCESS); + test_table(busname_result, BUSNAME_RESULT); + test_table(busname_state, BUSNAME_STATE); test_table(cgroup_device_policy, CGROUP_DEVICE_POLICY); test_table(condition_type, CONDITION_TYPE); + test_table(assert_type, CONDITION_TYPE); + test_table(condition_result, CONDITION_RESULT); test_table(device_state, DEVICE_STATE); test_table(exec_input, EXEC_INPUT); test_table(exec_output, EXEC_OUTPUT); + test_table(failure_action, FAILURE_ACTION); test_table(job_mode, JOB_MODE); test_table(job_result, JOB_RESULT); test_table(job_state, JOB_STATE); @@ -62,14 +73,22 @@ int main(int argc, char **argv) { test_table(kill_mode, KILL_MODE); test_table(kill_who, KILL_WHO); test_table(log_target, LOG_TARGET); + test_table(mac_policy, MACPOLICY); + test_table(manager_state, MANAGER_STATE); test_table(mount_exec_command, MOUNT_EXEC_COMMAND); test_table(mount_result, MOUNT_RESULT); test_table(mount_state, MOUNT_STATE); + test_table(name_policy, NAMEPOLICY); test_table(notify_access, NOTIFY_ACCESS); test_table(output_mode, OUTPUT_MODE); test_table(path_result, PATH_RESULT); test_table(path_state, PATH_STATE); test_table(path_type, PATH_TYPE); + test_table(policy_item_class, POLICY_ITEM_CLASS); + test_table(policy_item_type, POLICY_ITEM_TYPE); + test_table(protect_home, PROTECT_HOME); + test_table(protect_system, PROTECT_SYSTEM); + test_table(rlimit, RLIMIT); test_table(scope_result, SCOPE_RESULT); test_table(scope_state, SCOPE_STATE); test_table(service_exec_command, SERVICE_EXEC_COMMAND); @@ -83,11 +102,11 @@ int main(int argc, char **argv) { test_table(socket_exec_command, SOCKET_EXEC_COMMAND); test_table(socket_result, SOCKET_RESULT); test_table(socket_state, SOCKET_STATE); - test_table(start_limit_action, SERVICE_START_LIMIT); + test_table(split_mode, SPLIT); + test_table(storage, STORAGE); test_table(swap_exec_command, SWAP_EXEC_COMMAND); test_table(swap_result, SWAP_RESULT); test_table(swap_state, SWAP_STATE); - test_table(systemd_running_as, SYSTEMD_RUNNING_AS); test_table(target_state, TARGET_STATE); test_table(timer_base, TIMER_BASE); test_table(timer_result, TIMER_RESULT); @@ -95,11 +114,13 @@ int main(int argc, char **argv) { test_table(unit_active_state, UNIT_ACTIVE_STATE); test_table(unit_dependency, UNIT_DEPENDENCY); test_table(unit_file_change_type, UNIT_FILE_CHANGE_TYPE); + test_table(unit_file_preset_mode, UNIT_FILE_PRESET); test_table(unit_file_state, UNIT_FILE_STATE); test_table(unit_load_state, UNIT_LOAD_STATE); test_table(unit_type, UNIT_TYPE); + test_table(locale_variable, VARIABLE_LC); - _test_table("syscall", syscall_to_name, syscall_from_name, syscall_max(), true); + test_table_sparse(object_compressed, OBJECT_COMPRESSED); return EXIT_SUCCESS; }