]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/test-networkd-util.c
doc: mention that units can be masked via credentials
[thirdparty/systemd.git] / src / network / test-networkd-util.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include "networkd-util.h"
4 #include "tests.h"
5
6 TEST(network_config_state_to_string_alloc) {
7 for (unsigned i = 1; i <= NETWORK_CONFIG_STATE_REMOVING; i <<= 1) {
8 _cleanup_free_ char *x;
9
10 assert_se(network_config_state_to_string_alloc(i, &x) == 0);
11 log_debug("%u → %s", i, x);
12 }
13
14 _cleanup_free_ char *x;
15 assert_se(network_config_state_to_string_alloc(~0u, &x) == 0);
16 log_debug("%u → %s", ~0u, x);
17 };
18
19 DEFINE_TEST_MAIN(LOG_DEBUG);