OSDN Git Service

tests: remove fail=0 initializations
[android-x86/external-parted.git] / tests / t8000-loop.sh
1 #!/bin/sh
2 # Test usage of loop devices
3
4 # Copyright (C) 2008-2010 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 if test "$VERBOSE" = yes; then
20   set -x
21   parted --version
22 fi
23
24 : ${srcdir=.}
25 . $srcdir/t-lib.sh
26
27 require_root_
28 lvm_init_root_dir_
29
30 d1= f1=
31 cleanup_()
32 {
33   test -n "$d1" && losetup -d "$d1"
34   rm -f "$f1"
35 }
36
37 f1=$(pwd)/1; d1=$(loop_setup_ "$f1") \
38   || skip_ "is this partition mounted with 'nodev'?"
39
40 # Expect this to succeed.
41 parted -s $d1 mklabel msdos > err 2>&1 || fail=1
42 compare err /dev/null || fail=1     # expect no output
43
44 # Create a partition
45 parted -s $d1 mkpart primary 1 10 > err 2>&1 || fail=1
46 compare err /dev/null || fail=1     # expect no output
47
48 Exit $fail