]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/login/test-login-tables.c
resolved: rework parsing of /etc/hosts
[thirdparty/systemd.git] / src / login / test-login-tables.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
a8b409db
ZJS
2
3#include "logind-action.h"
4#include "logind-session.h"
a8b409db
ZJS
5#include "test-tables.h"
6
7int main(int argc, char **argv) {
8 test_table(handle_action, HANDLE_ACTION);
9 test_table(inhibit_mode, INHIBIT_MODE);
10 test_table(kill_who, KILL_WHO);
11 test_table(session_class, SESSION_CLASS);
12 test_table(session_state, SESSION_STATE);
13 test_table(session_type, SESSION_TYPE);
14 test_table(user_state, USER_STATE);
15
16 return EXIT_SUCCESS;
17}