| #!/bin/sh |
| |
| # Copyright (C) 2007 Free Software Foundation, Inc. |
| |
| # This program is free software; you can redistribute it and/or modify |
| # it under the terms of the GNU General Public License as published by |
| # the Free Software Foundation; either version 2 of the License, or |
| # (at your option) any later version. |
| |
| # This program is distributed in the hope that it will be useful, |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| # GNU General Public License for more details. |
| |
| # You should have received a copy of the GNU General Public License |
| # along with this program; if not, write to the Free Software |
| # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| # 02110-1301, USA. |
| |
| test_description='Create some file systems using mkfs.' |
| |
| . $srcdir/test-lib.sh |
| |
| N=40M |
| dev=loop-file |
| test_expect_success \ |
| 'create a file large enough to hold a fat32 file system' \ |
| 'dd if=/dev/zero of=$dev bs=$N count=1 2> /dev/null' |
| |
| test_expect_success \ |
| 'label the test disk' \ |
| 'parted -s $dev mklabel msdos > out 2>&1' |
| test_expect_success 'expect no output' '$compare out /dev/null' |
| |
| test_expect_success \ |
| 'create an partition' \ |
| 'parted -s $dev mkpart primary 1 40 > out 2>&1' |
| |
| test_expect_success \ |
| 'create an msdos file system' \ |
| 'parted -s $dev mkfs 1 fat32 > out 2>&1' |
| |
| test_expect_success 'expect no output' '$compare out /dev/null' |
| |
| test_done |