Upload Tizen:Base source
[framework/base/util-linux-ng.git] / tests / ts / fsck / ismounted
1 #!/bin/bash
2 #
3 # Copyright (C) 2009 Karel Zak <kzak@redhat.com>
4 #
5 # This file is part of util-linux-ng.
6 #
7 # This file is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11 #
12 # This file is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 TS_TOPDIR="$(dirname $0)/../.."
18 TS_DESC="is mounted"
19
20 . $TS_TOPDIR/functions.sh
21 ts_init "$*"
22 ts_skip_nonroot
23
24 set -o pipefail
25
26 > $TS_OUTPUT
27
28 DEVICE=$(ts_device_init)
29 [ "$?" == 0 ] || ts_die "Cannot init device"
30
31 mkfs.ext3 $DEVICE &> /dev/null || ts_die "Cannot make ext3 on $DEVICE" $DEVICE
32
33 ts_device_has "TYPE" "ext3" $DEVICE || ts_die "Cannot found ext3 on $DEVICE" $DEVICE
34
35 [ -d "$TS_MOUNTPOINT" ] || mkdir -p $TS_MOUNTPOINT
36
37 $TS_CMD_MOUNT $DEVICE $TS_MOUNTPOINT >> $TS_OUTPUT 2>&1
38
39 # test by ismounted.c
40 $TS_HELPER_ISMOUNTED $DEVICE >> $TS_OUTPUT 2>&1
41
42 $TS_CMD_UMOUNT $DEVICE || ts_die "Cannot umount $DEVICE" $DEVICE
43
44 ts_device_deinit $DEVICE
45 ts_finalize