1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Enhance test debugging by updating verbose mode of check_*_field_ functions.

Author: Dave Wysochanski <dwysocha@redhat.com>
This commit is contained in:
Dave Wysochanski 2008-03-28 18:02:22 +00:00
parent 2aa5120e82
commit a16d7d46dd

View File

@ -63,7 +63,7 @@ check_vg_field_()
{
if test "$verbose" = "t"
then
echo "check_vg_field_ actual: `vgs --noheadings -o $2 $1` expected $3"
echo "check_vg_field_ VG: $1 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_ actual: `pvs --noheadings -o $2 $1` expected $3"
echo "check_pv_field_ PV: $1 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_ actual: `lvs --noheadings -o $2 $1` expected $3"
echo "check_lv_field_ LV: $1 actual: `lvs --noheadings -o $2 $1` expected $3"
fi
return $(test $(lvs --noheadings -o $2 $1) == $3)
}