Update to upstream util-linux 2.20.1
[framework/base/util-linux-ng.git] / tests / ts / mount / label
1 #!/bin/bash
2
3 #
4 # Copyright (C) 2007 Karel Zak <kzak@redhat.com>
5 #
6 # This file is part of util-linux.
7 #
8 # This file 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 2 of the License, or
11 # (at your option) any later version.
12 #
13 # This file 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.
17 #
18
19 TS_TOPDIR="$(dirname $0)/../.."
20 TS_DESC="by label"
21 LABEL="testMountLabel"
22
23 . $TS_TOPDIR/functions.sh
24 ts_init "$*"
25 ts_skip_nonroot
26
27 set -o pipefail
28
29 DEVICE=$(ts_device_init)
30 [ "$?" == 0 ] || ts_die "Cannot init device"
31
32 mkfs.ext3 -L $LABEL $DEVICE &> /dev/null || ts_die "Cannot make ext3 on $DEVICE" $DEVICE
33
34 ts_device_has "LABEL" $LABEL $DEVICE \
35  || ts_die "Cannot find LABEL '$LABEL' on $DEVICE" $DEVICE
36
37 [ -d "$TS_MOUNTPOINT" ] || mkdir -p $TS_MOUNTPOINT
38
39 # variant A)
40 $TS_CMD_MOUNT -L $LABEL $TS_MOUNTPOINT 2>&1 >> $TS_OUTPUT
41 ts_is_mounted $DEVICE || ts_die "A) Cannot find $DEVICE in /proc/mounts" $DEVICE
42 $TS_CMD_UMOUNT $DEVICE || ts_die "A) Cannot umount $DEVICE" $DEVICE
43
44 # variant B)
45 $TS_CMD_MOUNT LABEL=$LABEL $TS_MOUNTPOINT 2>&1 >> $TS_OUTPUT
46 ts_is_mounted $DEVICE || ts_die "B) Cannot find $DEVICE in /proc/mounts" $DEVICE
47 $TS_CMD_UMOUNT $DEVICE || ts_die "B) Cannot umount $DEVICE" $DEVICE
48
49 ts_device_deinit $DEVICE
50
51 ts_log "Success"
52 ts_finalize
53