~ubuntu-branches/ubuntu/lucid/loop-aes-utils/lucid-security

« back to all changes in this revision

Viewing changes to tests/ts/mount/fstab-uuid2label

  • Committer: Bazaar Package Importer
  • Author(s): Max Vozeler
  • Date: 2009-07-06 02:08:18 UTC
  • mfrom: (1.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090706020818-11pxao7bhgjenfv9
Tags: 2.15.1~rc1-2
Disable ncurses (--without-ncurses), not used in
mount/. Fixes FTBFS (closes: #535676).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
#
 
4
# Copyright (C) 2007 Karel Zak <kzak@redhat.com>
 
5
#
 
6
# This file is part of util-linux-ng.
 
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
 
10
# the Free Software Foundation; either version 2 of the License, or
 
11
# (at your option) any later version.
 
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
#
 
18
TS_TOPDIR="$(dirname $0)/../.."
 
19
TS_DESC="by uuid (fstab label)"
 
20
LABEL="testMountU2L"
 
21
 
 
22
. $TS_TOPDIR/functions.sh
 
23
ts_init "$*"
 
24
ts_skip_nonroot
 
25
 
 
26
set -o pipefail
 
27
 
 
28
DEVICE=$(ts_device_init)
 
29
[ "$?" == 0 ] || ts_die "Cannot init device"
 
30
 
 
31
mkfs.ext3 -L $LABEL $DEVICE &> /dev/null || ts_die "Cannot make ext3 on $DEVICE" $DEVICE
 
32
 
 
33
ts_device_has "LABEL" $LABEL $DEVICE \
 
34
 || ts_die "Cannot found LABEL '$LABEL' on $DEVICE" $DEVICE
 
35
 
 
36
ts_udev_dev_support "by-label" $LABEL || ts_skip "udev ignores /dev/loop*" $DEVICE
 
37
 
 
38
ts_device_has_uuid $DEVICE || ts_die "Cannot found UUID on $DEVICE" $DEVICE
 
39
 
 
40
UUID=$(ts_uuid_by_devname $DEVICE)
 
41
 
 
42
[ -d "$TS_MOUNTPOINT" ] || mkdir -p $TS_MOUNTPOINT
 
43
 
 
44
ts_fstab_add "LABEL=$LABEL"
 
45
 
 
46
# variant A)
 
47
$TS_CMD_MOUNT -U $UUID 2>&1 >> $TS_OUTPUT
 
48
ts_is_mounted $DEVICE || ts_die "A) Cannot found $DEVICE in /proc/mounts" $DEVICE
 
49
$TS_CMD_UMOUNT $DEVICE || ts_die "A) Cannot umount $DEVICE" $DEVICE
 
50
 
 
51
# variant B)
 
52
$TS_CMD_MOUNT "UUID=$UUID" 2>&1 >> $TS_OUTPUT
 
53
ts_is_mounted $DEVICE || ts_die "B) Cannot found $DEVICE in /proc/mounts" $DEVICE
 
54
$TS_CMD_UMOUNT $DEVICE || ts_die "B) Cannot umount $DEVICE" $DEVICE
 
55
 
 
56
ts_device_deinit $DEVICE
 
57
ts_fstab_clean
 
58
 
 
59
ts_log "Success"
 
60
ts_finalize
 
61