summaryrefslogtreecommitdiffstats
path: root/tests/ts/minix/mkfs
blob: 6c3a00247e230627c28fde4e3f020ffa1153f1f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash
#
# Copyright (C) 2009 Karel Zak <kzak@redhat.com>
#
# This file is part of util-linux.
#
# This file 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 file 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.
#
TS_TOPDIR="${0%/*}/../.."
TS_DESC="mkfs mount"

. $TS_TOPDIR/functions.sh
ts_init "$*"

ts_check_test_command "$TS_CMD_MKMINIX"
ts_check_test_command "$TS_CMD_MOUNT"
ts_check_test_command "$TS_CMD_UMOUNT"
ts_skip_nonroot

ts_scsi_debug_init dev_size_mb=10 num_parts=1
dev=${TS_DEVICE}1

# hotfix, wait for partition to appear (slow on Debian 7/linux-3.2)
test -b $dev || sleep 1

mkfs_and_mount_minix() {
	ts_init_subtest $1
	ts_log "create minix fs $2"
	$TS_CMD_MKMINIX $2 $dev >> $TS_OUTPUT 2>&1
	echo "mkfs return value: $?" >> $TS_OUTPUT
	udevadm settle
	[ -d "$TS_MOUNTPOINT" ] || mkdir -p $TS_MOUNTPOINT
	ts_mount "minix" $dev $TS_MOUNTPOINT
	ts_is_mounted $dev || ts_die "Cannot find $dev in /proc/mounts"
	ts_log "umount the image"
	udevadm settle
	$TS_CMD_UMOUNT $dev
	ts_finalize_subtest
}

mkfs_and_mount_minix 'v1c14' '-1 -n 14'
mkfs_and_mount_minix 'v1c30' '-1 -n 30'
mkfs_and_mount_minix 'v2c14' '-2 -n 14'
mkfs_and_mount_minix 'v2c30' '-2 -n 30'
mkfs_and_mount_minix 'v2i65535' '-2 -i 65535'
mkfs_and_mount_minix 'v3c60' '-3 -n 60'

ts_finalize