blob: 0e39e895e80de3ec8e52d68fef3b7f39e2d3d6b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* SPDX-License-Identifier: LGPL-2.1+ */
/***
This file is part of systemd
Copyright 2013 Zbigniew Jędrzejewski-Szmek
***/
#include "machine.h"
#include "test-tables.h"
int main(int argc, char **argv) {
test_table(machine_class, MACHINE_CLASS);
test_table(machine_state, MACHINE_STATE);
test_table(kill_who, KILL_WHO);
return EXIT_SUCCESS;
}
|