]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/machine/test-machine-tables.c
tree-wide: beautify remaining copyright statements
[thirdparty/systemd.git] / src / machine / test-machine-tables.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
a8b409db 2/***
96b2fb93 3 Copyright © 2013 Zbigniew Jędrzejewski-Szmek
a8b409db
ZJS
4***/
5
6#include "machine.h"
a8b409db
ZJS
7#include "test-tables.h"
8
9int main(int argc, char **argv) {
279eadd9 10 test_table(kill_who, KILL_WHO);
a8b409db
ZJS
11 test_table(machine_class, MACHINE_CLASS);
12 test_table(machine_state, MACHINE_STATE);
a8b409db
ZJS
13
14 return EXIT_SUCCESS;
15}