mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
ad9cbe2714
Using lvm1 metadata with lvmetad is not generally allowed, but nothing has prevented creating new lvm1 metadata with lvmetad (missing error checking in pvcreate/vgcreate.) Various tests are using lvm1 with lvmetad and happen to work because of the missing error checks. This commit fixes the tests so they won't fail when the lvm1/lvmetad error checking is fixed. A new variable LVM_TEST_LVM1 is defined and is used in the scripts to decide if lvm1 metadata should be tested. LVM_TEST_LVM1 is not defined when lvmetad is being tested, and the combination of LVM_TEST_LVM1 and LVM_TEST_LVMETAD can be used to verify the desired lvmetad+lvm1 behavior.
36 lines
1.0 KiB
Bash
36 lines
1.0 KiB
Bash
#!/bin/sh
|
|
# Copyright (C) 2008 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
|
|
|
|
test_description='Test lvm1 format'
|
|
|
|
. lib/inittest
|
|
|
|
aux prepare_devs 1
|
|
|
|
if test -n "$LVM_TEST_LVM1" ; then
|
|
pvcreate -M1 "$dev1"
|
|
vgcreate -M1 $vg "$dev1"
|
|
check vg_field $vg fmt "lvm1"
|
|
fi
|
|
|
|
# TODO: if we decide to make using lvm1 with lvmetad an error,
|
|
# then if lvmetad is being used, then verify:
|
|
# not pvcreate -M1 "$dev1"
|
|
# not vgcreate -M1 $vg "$dev1"
|
|
#
|
|
# TODO: if we decide to allow using lvm1 with lvmetad, but disable lvmetad
|
|
# when it happens, then verify:
|
|
# pvcreate -M1 "$dev1" | tee err
|
|
# grep "disabled" err
|
|
# vgcreate -M1 $vg "$dev1" | tee err
|
|
# grep "disabled" err
|
|
|