]> git.ipfire.org Git - thirdparty/util-linux.git/blame - tests/ts/mount/fstab-uuid2devname
tests: consolidate ts_device_has UUID or LABEL
[thirdparty/util-linux.git] / tests / ts / mount / fstab-uuid2devname
CommitLineData
f82448f8
KZ
1#!/bin/bash
2
3#
4# Copyright (C) 2007 Karel Zak <kzak@redhat.com>
5#
601d12fb 6# This file is part of util-linux.
f82448f8
KZ
7#
8# This file is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
92f2c23e
KZ
10# the Free Software Foundation; either version 2 of the License, or
11# (at your option) any later version.
f82448f8
KZ
12#
13# This file 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#
e130ce53 18TS_TOPDIR="${0%/*}/../.."
43d1d9c7 19TS_DESC="by uuid (fstab devname)"
f82448f8 20
43d1d9c7 21. $TS_TOPDIR/functions.sh
1d9acab1 22ts_init "$*"
2f791546
SK
23
24ts_check_test_command "$TS_CMD_MOUNT"
25ts_check_test_command "$TS_CMD_UMOUNT"
26
f82448f8 27ts_skip_nonroot
a5b45f2f 28ts_check_losetup
ee6c0ca6 29ts_check_prog "mkfs.ext3"
f82448f8 30
cbae7931
RM
31ts_device_init
32DEVICE=$TS_LODEV
f82448f8 33
f1849be9 34mkfs.ext3 $DEVICE &> /dev/null || ts_die "Cannot make ext3 on $DEVICE"
9ca02cf5 35UUID=$(ts_uuid_by_devname "$DEVICE") || ts_die "Cannot find UUID on $DEVICE"
f82448f8 36
f82448f8
KZ
37[ -d "$TS_MOUNTPOINT" ] || mkdir -p $TS_MOUNTPOINT
38
39ts_fstab_add "$DEVICE"
9ca02cf5 40ts_udevadm_settle "$DEVICE" "UUID"
f82448f8
KZ
41
42# variant A)
b59c3bf2 43$TS_CMD_MOUNT -U $UUID >> $TS_OUTPUT 2>&1
f1849be9
RM
44ts_is_mounted $DEVICE || ts_die "A) Cannot find $DEVICE in /proc/mounts"
45$TS_CMD_UMOUNT $DEVICE || ts_die "A) Cannot umount $DEVICE"
f82448f8
KZ
46
47# variant B)
b59c3bf2 48$TS_CMD_MOUNT "UUID=$UUID" >> $TS_OUTPUT 2>&1
f1849be9
RM
49ts_is_mounted $DEVICE || ts_die "B) Cannot find $DEVICE in /proc/mounts"
50$TS_CMD_UMOUNT $DEVICE || ts_die "B) Cannot umount $DEVICE"
f82448f8 51
f82448f8
KZ
52ts_fstab_clean
53
54ts_log "Success"
55ts_finalize
56