OSDN Git Service

maint: remove now-unused fat-related functions
[android-x86/external-parted.git] / tests / t9050-partition-table-types.sh
1 #!/bin/sh
2 # Ensure that any combination of partition table types works.
3 # I.e., write a partition table of type T, and then overwrite it
4 # with one of type V, for every permutation of T and V.
5
6 # Copyright (C) 2011-2012 Free Software Foundation, Inc.
7
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 . "${srcdir=.}/init.sh"; path_prepend_ ../parted
22
23 not_yet='
24 aix
25 '
26
27 types='
28 bsd
29 msdos
30 dvh
31 gpt
32 loop
33 mac
34 pc98
35 sun
36 mkswap
37 '
38
39 dd if=/dev/null of=f bs=1 seek=30M || framework_failure_
40
41 for i in $types; do
42   for j in $types; do
43     echo $i:$j
44     case $i in mkswap) mkswap f >/dev/null 2>&1 || fail=1;;
45       *) parted -s f mklabel $i || fail=1;; esac
46     case $j in mkswap) continue;; esac
47     parted -s f mklabel $j || fail=1
48   done
49 done
50
51 Exit $fail