summaryrefslogtreecommitdiffstats
path: root/src/machine/test-machine-tables.c
blob: 32c5e0e80d0acef62d86cc11e9950727e49fa10e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: LGPL-2.1-or-later */

#include "machine.h"
#include "test-tables.h"
#include "tests.h"

int main(int argc, char **argv) {
        test_setup_logging(LOG_DEBUG);

        test_table(kill_who, KILL_WHO);
        test_table(machine_class, MACHINE_CLASS);
        test_table(machine_state, MACHINE_STATE);

        return EXIT_SUCCESS;
}