2017-07-02 22:38:32 +03:00
#!/usr/bin/env bash
2016-06-01 18:25:55 +03:00
# Copyright (C) 2016 Red Hat, Inc. All rights reserved.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# 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
# Check how lvm2 handles partitions over losetup -P devices
2018-05-24 17:49:48 +03:00
2016-06-01 18:25:55 +03:00
SKIP_WITH_LVMPOLLD = 1
. lib/inittest
which sfdisk || skip
aux prepare_loop 1000 -P || skip
test -f LOOP
LOOP = $( < LOOP)
2017-07-10 11:40:09 +03:00
echo "1 2" | sfdisk " $LOOP "
2016-06-01 18:25:55 +03:00
# wait for links
aux udev_wait
# losetup -P should provide partition
ls -la " ${ LOOP } " *
test -e " ${ LOOP } p1 "
2022-02-23 00:03:11 +03:00
aux lvmconf 'devices/scan = "/dev"'
2016-06-01 18:25:55 +03:00
aux extend_filter " a| $LOOP | "
2021-08-19 00:23:48 +03:00
aux extend_devices " $LOOP "
2016-06-01 18:25:55 +03:00
# creation should fail for 'partitioned' loop device
2017-07-10 11:40:09 +03:00
not pvcreate -y " $LOOP "
2021-03-23 16:38:54 +03:00
not vgcreate $SHARED ${ PREFIX } vg " $LOOP "
2016-06-01 18:25:55 +03:00
aux teardown_devs
aux prepare_loop 1000 || skip
test -f LOOP
LOOP = $( < LOOP)
2017-07-10 11:40:09 +03:00
echo "1 2" | sfdisk " $LOOP "
2016-06-01 18:25:55 +03:00
# wait for links
aux udev_wait
# no partitione should be actually there
ls -la " ${ LOOP } " *
test ! -e " ${ LOOP } p1 "
aux extend_filter " a| $LOOP | "
2021-08-19 00:23:48 +03:00
aux extend_devices " $LOOP "
2016-06-01 18:25:55 +03:00
# creation should pass for 'non-partitioned' loop device
2017-07-10 11:40:09 +03:00
pvcreate -y " $LOOP "
2016-06-01 18:25:55 +03:00
2021-03-23 16:38:54 +03:00
vgcreate $SHARED ${ PREFIX } vg " $LOOP "