]> git.ipfire.org Git - thirdparty/util-linux.git/blame - tests/ts/mount/fstab-devname2uuid
tests: split stdout and stderr
[thirdparty/util-linux.git] / tests / ts / mount / fstab-devname2uuid
CommitLineData
1a7dcc4f
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.
1a7dcc4f
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.
1a7dcc4f
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 devname (fstab uuid)"
1a7dcc4f 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
1a7dcc4f 27ts_skip_nonroot
a5b45f2f 28ts_check_losetup
ee6c0ca6 29ts_check_prog "mkfs.ext3"
1a7dcc4f 30
cbae7931
RM
31ts_device_init
32DEVICE=$TS_LODEV
1a7dcc4f 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"
1a7dcc4f
KZ
36
37[ -d "$TS_MOUNTPOINT" ] || mkdir -p $TS_MOUNTPOINT
38
39ts_fstab_add "UUID=$UUID"
9ca02cf5 40ts_udevadm_settle "$DEVICE" "UUID"
1a7dcc4f 41
cbf858aa 42$TS_CMD_MOUNT $DEVICE >> $TS_OUTPUT 2>> $TS_ERRLOG
f1849be9
RM
43ts_is_mounted $DEVICE || ts_die "Cannot find $DEVICE in /proc/mounts"
44$TS_CMD_UMOUNT $DEVICE || ts_die "Cannot umount $DEVICE"
1a7dcc4f 45
1a7dcc4f
KZ
46ts_fstab_clean
47
48ts_log "Success"
49ts_finalize
50