~ubuntu-branches/ubuntu/vivid/parted/vivid

« back to all changes in this revision

Viewing changes to tests/t2300-dos-label-extended-bootcode.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
# Ensure parted preserves bootcode in extended partition.
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
require_512_byte_sector_size_
28
22
 
29
23
dev=loop-file
30
24
bootcode_size=446
31
25
 
32
 
fail=0
33
 
 
34
26
# Create the test file
35
27
dd if=/dev/zero of=$dev bs=1M count=4 || fail=1
36
28
 
37
29
# Create msdos label
38
30
parted -s $dev mklabel msdos > out 2>&1 || fail=1
39
 
compare out /dev/null || fail=1 # Expect no output
 
31
compare /dev/null out || fail=1 # Expect no output
40
32
 
41
33
# Create extended partition
42
34
parted -s $dev mkpart extended 2048s 8191s > out 2>&1 || fail=1
43
 
compare out /dev/null || fail=1 # Expect no output
 
35
compare /dev/null out || fail=1 # Expect no output
44
36
 
45
37
# Create logical partition
46
38
parted -s $dev mkpart logical 4096s 8191s > out 2>&1 || fail=1
47
 
compare out /dev/null || fail=1 # Expect no output
 
39
compare /dev/null out || fail=1 # Expect no output
48
40
 
49
41
# Install fake bootcode
50
42
printf %0${bootcode_size}d 0 > in || fail=1
56
48
 
57
49
# Do something to the label
58
50
parted -s $dev rm 5 > out 2>&1 || fail=1
59
 
compare out /dev/null || fail=1 # Expect no output
 
51
compare /dev/null out || fail=1 # Expect no output
60
52
 
61
53
# Extract the bootcode for comparison
62
54
dd if=$dev of=after bs=1 skip=1M count=$bootcode_size || fail=1