1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-28 03:27:58 +03:00

Update test function _check_{vg|lv|pv}_field to aid in test debug.

Author: Dave Wysochanski <dwysocha@redhat.com>
This commit is contained in:
Dave Wysochanski 2008-04-23 13:02:03 +00:00
parent 7eb03d6c5c
commit 029d4de4be

View File

@ -63,7 +63,7 @@ check_vg_field_()
{
if test "$verbose" = "t"
then
echo "check_vg_field_ VG: $1 actual: `vgs --noheadings -o $2 $1` expected $3"
echo "check_vg_field_ VG=$1, field=$2, actual=`vgs --noheadings -o $2 $1`, expected=$3"
fi
return $(test $(vgs --noheadings -o $2 $1) == $3)
}
@ -72,7 +72,7 @@ check_pv_field_()
{
if test "$verbose" = "t"
then
echo "check_pv_field_ PV: $1 actual: `pvs --noheadings -o $2 $1` expected $3"
echo "check_pv_field_ PV=$1, field=$2, actual=`pvs --noheadings -o $2 $1`, expected=$3"
fi
return $(test $(pvs --noheadings -o $2 $1) == $3)
}
@ -81,7 +81,7 @@ check_lv_field_()
{
if test "$verbose" = "t"
then
echo "check_lv_field_ LV: $1 actual: `lvs --noheadings -o $2 $1` expected $3"
echo "check_lv_field_ LV=$1, field=$2, actual=`lvs --noheadings -o $2 $1`, expected=$3"
fi
return $(test $(lvs --noheadings -o $2 $1) == $3)
}