blob: a4332320f6890b4e8b01275f783f93c9c4b951be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#include "link-config.h"
#include "test-tables.h"
#include "tests.h"
int main(int argc, char **argv) {
test_setup_logging(LOG_DEBUG);
test_table(mac_address_policy, MAC_ADDRESS_POLICY);
return EXIT_SUCCESS;
}
|