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 58 59 60 61 62 63 64
|
#!/bin/bash -
# libguestfs
# Copyright (C) 2015 Red Hat 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.
# Regression test for virt-resize handling of logical volumes
# https://bugzilla.redhat.com/1285847
set -e
$TEST_FUNCTIONS
skip_if_skipped
skip_unless virt-resize --help
rm -f rhbz1285847.img rhbz1285847-2.img rhbz1285847.out
# Create a disk with logical volumes.
guestfish <<EOF
sparse rhbz1285847.img 4G
run
part-init /dev/sda mbr
# This partition layout is copied from the Ubuntu 14.04
# virt-builder template.
part-add /dev/sda p $((1048576/512)) $(((3221225471+1)/512))
part-add /dev/sda e $((3222273024/512)) $(((4293918719+1)/512))
part-add /dev/sda l $((3222274048/512)) $(((4293918719+1)/512))
mkfs ext4 /dev/sda1
mkswap /dev/sda5
echo "Partitions before resizing:"
part-list /dev/sda
echo "Filesystems before resizing:"
list-filesystems
EOF
guestfish disk-create rhbz1285847-2.img raw 10G
virt-resize rhbz1285847.img rhbz1285847-2.img --expand /dev/sda2
# Check that the filesystems made it across.
guestfish --format=raw -a rhbz1285847-2.img run : list-filesystems > rhbz1285847.out
if [ "$(cat rhbz1285847.out)" != "/dev/sda1: ext4
/dev/sda5: swap" ]; then
echo "$0: unexpected result:"
cat rhbz1285847.out
exit 1
fi
rm rhbz1285847.img rhbz1285847-2.img rhbz1285847.out
|