blob: 958beb84173e74e815ae065e8d40afc1e91d06a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#include "journald-server.h"
#include "test-tables.h"
int main(int argc, char **argv) {
test_table(split_mode, SPLIT);
test_table(storage, STORAGE);
return EXIT_SUCCESS;
}
|