tests: add test for locale decimal processing
[coreutils.git] / tests / mkdir / smack-root.sh
blob70fc0a4eca986229fe1e5e616c6995650765e260
1 #!/bin/sh
2 # SMACK test for the mkdir,mknod, mkfifo commands.
3 # Derived from tests/mkdir/selinux.sh.
4 # Ensure that SMACK label gets set.
6 # Copyright (C) 2014-2019 Free Software Foundation, Inc.
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <https://www.gnu.org/licenses/>.
21 . "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
22 print_ver_ mkdir mkfifo mknod
24 require_smack_
25 require_root_
27 c=arbitrary-smack-label
29 for cmd in 'mkdir dir' 'mknod b p' 'mkfifo f'; do
30 $cmd --context="$c" || { fail=1; continue; }
31 set $cmd
32 ls -dZ $2 > out || fail=1
33 test "$(cut -f1 -d' ' out)" = "$c" || { cat out; fail=1; }
34 done
36 Exit $fail