diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-11-11 13:30:09 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-11-11 17:30:04 +0000 |
commit | 6e6b3ff35f9baafb22d5459ca13c112b1e00ae1b (patch) | |
tree | b52b539fbb47ca4c0fb3a20ec3540bd9b27f35ee | |
parent | c81a16a4e2e703d0aaa595151602bcf03430f6ab (diff) | |
download | libguestfs-6e6b3ff35f9baafb22d5459ca13c112b1e00ae1b.tar.gz libguestfs-6e6b3ff35f9baafb22d5459ca13c112b1e00ae1b.tar.xz libguestfs-6e6b3ff35f9baafb22d5459ca13c112b1e00ae1b.zip |
df: Disable part of virt-df test.
See:
https://www.redhat.com/archives/libguestfs/2011-November/msg00051.html
-rwxr-xr-x | df/test-virt-df.sh | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/df/test-virt-df.sh b/df/test-virt-df.sh index 6878327d..38884e12 100755 --- a/df/test-virt-df.sh +++ b/df/test-virt-df.sh @@ -61,12 +61,14 @@ fi # /dev/dm-2 31729 395 29696 2% /sysroot/lv2 # /dev/dm-3 63472 144 60052 1% /sysroot/lv3 # -# Only test plain 'df' output at the moment (XXX). +# This test is disabled (XXX). See: +# https://www.redhat.com/archives/libguestfs/2011-November/msg00051.html -if [ "$(echo "$output" | sort | awk '/VG.LV[123]/ { print $2 " " $3 " " $4 " " $5 }')" != \ -"31728 28 30064 1% -31729 395 29696 2% -63472 144 60052 1%" ]; then - echo "$0: error: output of virt-df did not match expected (df) output" - exit 1 -fi +#if [ "$(echo "$output" | sort | awk '/VG.LV[123]/ { print $2 " " $3 " " $4 " " $5 }')" != \ +#"31728 28 30064 1% +#31729 395 29696 2% +#63472 144 60052 1%" ]; then +# echo "$0: error: output of virt-df did not match expected (df) output" +# echo "$output" +# exit 1 +#fi |