Upload Tizen:Base source
[framework/base/util-linux-ng.git] / tests / ts / swapon / label
1 #!/bin/bash
2
3 #
4 # Copyright (C) 2007 Karel Zak <kzak@redhat.com>
5 #
6 # This file is part of util-linux-ng.
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 TS_TOPDIR="$(dirname $0)/../.."
19 TS_DESC="by label"
20 LABEL="testSwapLabel"
21
22 . $TS_TOPDIR/functions.sh
23 ts_init "$*"
24 ts_skip_nonroot
25
26 set -o pipefail
27
28 DEVICE=$(ts_device_init)
29 [ "$?" == 0 ] || ts_die "Cannot init device"
30
31 $TS_CMD_MKSWAP -L $LABEL $DEVICE > /dev/null 2>> $TS_OUTPUT \
32  || ts_die "Cannot make swap on $DEVICE" $DEVICE
33
34 ts_device_has "LABEL" $LABEL $DEVICE \
35  || ts_die "Cannot found LABEL '$LABEL' on $DEVICE" $DEVICE
36
37 ts_udev_dev_support "by-label" $LABEL || ts_skip "udev ignores /dev/loop*" $DEVICE
38
39 $TS_CMD_SWAPON -L $LABEL 2>&1 >> $TS_OUTPUT
40
41 grep -q $DEVICE /proc/swaps || ts_die "Cannot found $DEVICE in /proc/swaps" $DEVICE
42
43 ts_swapoff $DEVICE
44 ts_device_deinit $DEVICE
45
46 ts_log "Success"
47 ts_finalize
48