Systemd/src/machine/test-machine-tables.c

13 lines
303 B
C
Raw Normal View History

/* SPDX-License-Identifier: LGPL-2.1-or-later */
#include "machine.h"
#include "test-tables.h"
int main(int argc, char **argv) {
2018-05-28 09:38:14 +02:00
test_table(kill_who, KILL_WHO);
test_table(machine_class, MACHINE_CLASS);
test_table(machine_state, MACHINE_STATE);
return EXIT_SUCCESS;
}