]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/test/test-mount-util.c
core: hook up MountFlags= to the transient unit logic
[thirdparty/systemd.git] / src / test / test-mount-util.c
CommitLineData
83555251
LP
1/***
2 This file is part of systemd.
3
4 Copyright 2016 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
19
20#include <sys/mount.h>
21
22#include "log.h"
23#include "mount-util.h"
24#include "string-util.h"
25
26static void test_mount_propagation_flags(const char *name, unsigned long f) {
27 assert(mount_propagation_flags_from_string(name) == f);
28
29 if (f != 0)
30 assert_se(streq_ptr(mount_propagation_flags_to_string(f), name));
31}
32
33int main(int argc, char *argv[]) {
34
35 log_set_max_level(LOG_DEBUG);
36
37 test_mount_propagation_flags("shared", MS_SHARED);
38 test_mount_propagation_flags("slave", MS_SLAVE);
39 test_mount_propagation_flags("private", MS_PRIVATE);
40 test_mount_propagation_flags(NULL, 0);
41 test_mount_propagation_flags("", 0);
42 test_mount_propagation_flags("xxxx", 0);
43
44 return 0;
45}