Branch data Line data Source code
1 : : /* SPDX-License-Identifier: LGPL-2.1+ */ 2 : : 3 : : #include "logind-action.h" 4 : : #include "logind-session.h" 5 : : #include "test-tables.h" 6 : : 7 : 4 : int main(int argc, char **argv) { 8 : 4 : test_table(handle_action, HANDLE_ACTION); 9 : 4 : test_table(inhibit_mode, INHIBIT_MODE); 10 : 4 : test_table(kill_who, KILL_WHO); 11 : 4 : test_table(session_class, SESSION_CLASS); 12 : 4 : test_table(session_state, SESSION_STATE); 13 : 4 : test_table(session_type, SESSION_TYPE); 14 : 4 : test_table(user_state, USER_STATE); 15 : : 16 : 4 : return EXIT_SUCCESS; 17 : : }