summaryrefslogtreecommitdiff
path: root/src/machine/test-machine-tables.c
blob: 78ba00c2a4b7b87cf97818c62866c037ba0cf3b3 (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(kill_who, KILL_WHO);
        test_table(machine_class, MACHINE_CLASS);
        test_table(machine_state, MACHINE_STATE);

        return EXIT_SUCCESS;
}