import source from 3.0
[external/parted.git] / tests / t0200-gpt.sh
1 #!/bin/sh
2 # Ensure that printing a GPT partition table does not modify it.
3
4 # Copyright (C) 2009-2011 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 N=2M
22 dev=loop-file
23 # create a file large enough to hold a GPT partition table
24 dd if=/dev/null of=$dev bs=1 seek=$N || framework_failure
25
26 # create a GPT partition table
27 parted -s $dev mklabel gpt > out 2>&1 || fail=1
28 # expect no output
29 compare out /dev/null || fail=1
30
31 # save a copy of the original primary GPT table
32 dd if=$dev of=before count=1 skip=1 || fail=1
33
34 # extend the backing file by 1 byte
35 printf x >> $dev || fail=1
36
37 # use parted simply to print the partition table
38 parted -m -s $dev u s p > out 2> err || fail=1
39 # don't bother comparing stdout
40 # expect no stderr
41 compare err /dev/null || fail=1
42
43 # extract the primary GPT table again
44 dd if=$dev of=after count=1 skip=1 || fail=1
45
46 # compare partition tables (they had better be identical)
47 compare before after || fail=1
48
49 Exit $fail