OSDN Git Service

maint: remove now-unused fat-related functions
[android-x86/external-parted.git] / tests / t8000-loop.sh
1 #!/bin/sh
2 # Test usage of loop devices
3
4 # Copyright (C) 2008-2012 Free Software Foundation, Inc.
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 . "${srcdir=.}/init.sh"; path_prepend_ ../parted
20
21 require_root_
22 lvm_init_root_dir_
23
24 d1= f1=
25 cleanup_fn_()
26 {
27   test -n "$d1" && losetup -d "$d1"
28   rm -f "$f1"
29 }
30
31 f1=$(pwd)/1; d1=$(loop_setup_ "$f1") \
32   || skip_ "is this partition mounted with 'nodev'?"
33
34 require_partitionable_loop_device_ $d1
35
36 # Expect this to succeed.
37 parted -s $d1 mklabel msdos > err 2>&1 || fail=1
38 compare /dev/null err || fail=1     # expect no output
39
40 # Create a partition
41 parted -s $d1 mkpart primary 1 10 > err 2>&1 || fail=1
42 compare /dev/null err || fail=1     # expect no output
43
44 Exit $fail