OSDN Git Service

libparted: avoid unwarranted failed assertion during mklabel
[android-x86/external-parted.git] / tests / t0101-print-empty.sh
1 #!/bin/sh
2 # test 'parted $dev print' on empty device (without label)
3 # Copyright (C) 2011-2012 Free Software Foundation, Inc.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 . "${srcdir=.}/init.sh"; path_prepend_ ../parted
19 ss=$sector_size_
20
21 ss=$sector_size_
22 dev=loop-file
23
24 {
25   cat <<EOF
26 Error: .../$dev: unrecognised disk label
27 Model:  (file)
28 Disk .../$dev: 8s
29 Sector size (logical/physical): ${ss}B/${ss}B
30 Partition Table: unknown
31 Disk Flags:
32 EOF
33 } > exp || framework_failure
34
35 # create 'empty' device
36 dd if=/dev/zero of=$dev bs=$(expr 8 '*' $ss) count=1 >/dev/null 2>&1 || fail=1
37
38 # print the empty table; expect nonzero exit status
39 parted -s $dev unit s print >out 2>&1 && fail=1
40
41 # prepare actual and expected output
42 sed 's/ $//' out > k && mv k out || fail=1 # Remove trailing blank.
43 mv out o2 && sed "s,^Disk .*/$dev:,Disk .../$dev:,; \
44                   s,^Error: .*/$dev:,Error: .../$dev:," o2 > out || fail=1
45
46 # check for expected output
47 compare exp out || fail=1
48
49 Exit $fail