OSDN Git Service

maint: remove now-unused fat-related functions
[android-x86/external-parted.git] / tests / t0210-gpt-resized-partition-entry-array.sh
1 #!/bin/sh
2 # exercise GPT handling of n_partition_array_entries != 128
3
4 # Copyright (C) 2009-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 $srcdir
20 require_perl_digest_crc_
21
22 ss=$sector_size_
23
24 N=2M
25 dev=loop-file
26 # create a file large enough to hold a GPT partition table
27 dd if=/dev/null of=$dev bs=1 seek=$N || framework_failure
28
29 # create a GPT partition table
30 parted -s $dev mklabel gpt > out 2>&1 || fail=1
31 # expect no output
32 compare /dev/null out || fail=1
33
34 gpt-header-munge --sector-size=$ss --n=9 $dev || fail=1
35
36 parted -m -s $dev u s p > out 2>&1 || fail=1
37 sed 's/.*:gpt:/:gpt:/' out > k && mv k out
38 printf 'BYT;\n:gpt::;\n' > exp || fail=1
39 compare exp out || fail=1
40
41 Exit $fail