X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=tools%2Ftest-virt-df.sh;h=6878327d587711a1a166e91638a78f59b2570f7e;hp=a7b50b8fe310623e2cb9b8e712cc8ef4bfb67f6c;hb=6d4815d3a4921219379bc9ec3cceead217668426;hpb=29c78cc979297b95407a5956b4caa34240a2f5a8 diff --git a/tools/test-virt-df.sh b/tools/test-virt-df.sh index a7b50b8..6878327 100755 --- a/tools/test-virt-df.sh +++ b/tools/test-virt-df.sh @@ -4,7 +4,7 @@ export LANG=C set -e # Run virt-df. -output=$(./virt-df test.img) +output=$(./virt-df ../images/fedora.img) # Check title is the first line. if [[ ! $output =~ ^Filesystem.* ]]; then @@ -19,25 +19,25 @@ if [ $(echo "$output" | wc -l) -ne 6 ]; then fi # Check /dev/VG/LV[1-3] and /dev/VG/Root were found. -if [[ ! $output =~ test.img:/dev/VG/LV1 ]]; then +if [[ ! $output =~ fedora.img:/dev/VG/LV1 ]]; then echo "$0: error: filesystem /dev/VG/LV1 was not found" exit 1 fi -if [[ ! $output =~ test.img:/dev/VG/LV2 ]]; then +if [[ ! $output =~ fedora.img:/dev/VG/LV2 ]]; then echo "$0: error: filesystem /dev/VG/LV2 was not found" exit 1 fi -if [[ ! $output =~ test.img:/dev/VG/LV3 ]]; then +if [[ ! $output =~ fedora.img:/dev/VG/LV3 ]]; then echo "$0: error: filesystem /dev/VG/LV3 was not found" exit 1 fi -if [[ ! $output =~ test.img:/dev/VG/Root ]]; then +if [[ ! $output =~ fedora.img:/dev/VG/Root ]]; then echo "$0: error: filesystem /dev/VG/Root was not found" exit 1 fi # Check /dev/sda1 was found. Might be called /dev/vda1. -if [[ ! $output =~ test.img:/dev/[hsv]da1 ]]; then +if [[ ! $output =~ fedora.img:/dev/[hsv]da1 ]]; then echo "$0: error: filesystem /dev/VG/sda1 was not found" exit 1 fi