~ubuntu-branches/ubuntu/utopic/parted/utopic-proposed

« back to all changes in this revision

Viewing changes to tests/t0202-gpt-pmbr.sh

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2014-07-21 10:23:16 UTC
  • mfrom: (7.2.32 sid)
  • Revision ID: package-import@ubuntu.com-20140721102316-jsyv3yzmbo8vlde5
Tags: 3.1-3
Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
2
# Preserve first 446B of the Protected MBR for gpt partitions.
3
3
 
4
 
# Copyright (C) 2009-2010 Free Software Foundation, Inc.
 
4
# Copyright (C) 2009-2012 Free Software Foundation, Inc.
5
5
 
6
6
# This program is free software; you can redistribute it and/or modify
7
7
# it under the terms of the GNU General Public License as published by
16
16
# You should have received a copy of the GNU General Public License
17
17
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
18
 
19
 
if test "$VERBOSE" = yes; then
20
 
  set -x
21
 
  parted --version
22
 
fi
23
 
 
24
 
: ${srcdir=.}
25
 
. $srcdir/t-lib.sh
 
19
. "${srcdir=.}/init.sh"; path_prepend_ ../parted
26
20
 
27
21
dev=loop-file
28
22
bootcode_size=446
29
23
 
30
 
fail=0
31
24
dd if=/dev/null of=$dev bs=1 seek=1M || framework_failure
32
25
 
33
26
# create a GPT partition table
34
27
parted -s $dev mklabel gpt > out 2>&1 || fail=1
35
28
# expect no output
36
 
compare out /dev/null || fail=1
 
29
compare /dev/null out || fail=1
37
30
 
38
31
# Fill the first $bootcode_size bytes with 0's.
39
32
# This affects only the protective MBR, so doesn't affect validity of gpt table.
45
38
# create a GPT partition table on top of the existing one.
46
39
parted -s $dev mklabel gpt > out 2>&1 || fail=1
47
40
# expect no output
48
 
compare out /dev/null || fail=1
 
41
compare /dev/null out || fail=1
49
42
 
50
43
# Extract the first $bootcode_size Bytes after GPT creation
51
44
dd if=$dev of=after bs=1c count=$bootcode_size > /dev/null 2>&1 || fail=1