OSDN Git Service

maint: remove now-unused fat-related functions
[android-x86/external-parted.git] / tests / t3300-palo-prep.sh
1 #!/bin/sh
2 # Ensure that palo and prep types work properly.
3
4 # Copyright (C) 2010-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
20 ss=$sector_size_
21
22 cat > exp <<EOF || framework_failure
23 1:2048s:4095s:2048s:::palo;
24 1:2048s:4095s:2048s:::prep;
25 1:2048s:4095s:2048s:::palo;
26 EOF
27
28 dev=dev-file
29
30 n_sectors=5000
31 dd if=/dev/null of=$dev bs=$ss seek=$n_sectors || fail=1
32
33 parted -m -s $dev mklabel msdos \
34   mkpart pri ext2 $((1*2048))s $((2*2048-1))s \
35   set 1 palo on u s print \
36   set 1 prep on u s print \
37   set 1 palo on u s print \
38     > out 2> err || fail=1
39
40 grep -E '^1:2048s:4095s:2048s:::p...;$' out > k; mv k out
41
42 compare exp out || fail=1
43
44 Exit $fail