OSDN Git Service

maint: remove now-unused fat-related functions
[android-x86/external-parted.git] / tests / t0203-gpt-tiny-device-abort.sh
1 #!/bin/sh
2 # parted before 3.1 could abort for a pathologically small device with
3 # a valid primary GPT header but no room for the backup header.
4
5 # Copyright (C) 2009-2012 Free Software Foundation, Inc.
6
7 # This program 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 3 of the License, or
10 # (at your option) any later version.
11
12 # This program 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 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 . "${srcdir=.}/init.sh"; path_prepend_ ../parted
21
22 N=2M
23 dev=loop-file
24 # create a file large enough to hold a GPT partition table
25 dd if=/dev/null of=$dev bs=1 seek=$N || framework_failure
26
27 # create a GPT partition table
28 parted -s $dev mklabel gpt > out 2>&1 || fail=1
29 # expect no output
30 compare /dev/null out || fail=1
31
32 # truncate it to 34 sectors.
33 for i in 33 34 35 67 68 69 101 102 103; do
34   dd if=$dev of=bad count=$i
35
36   # Print the partition table.  Before, this would evoke a failed assertion.
37   printf 'i\no\n' > in
38   parted ---pretend-input-tty bad u s p < in > out 2> err || { fail=1; cat err; }
39   # don't bother comparing stdout
40 done
41
42 Exit $fail