diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2012-03-08 13:13:24 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-03-08 13:21:51 +0000 |
commit | 10f240a07f156493eb0540a95f9a3deba36c6862 (patch) | |
tree | 9f5114d3193f2930452124ebcb1c017ad80fa226 | |
parent | 5503d95e1b340de38b77b0d5be639da72b0f88c6 (diff) | |
download | libguestfs-10f240a07f156493eb0540a95f9a3deba36c6862.tar.gz libguestfs-10f240a07f156493eb0540a95f9a3deba36c6862.tar.xz libguestfs-10f240a07f156493eb0540a95f9a3deba36c6862.zip |
tests/md: Number the errors so we can easily see which test fails.
-rwxr-xr-x | tests/md/test-inspect-fstab.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/md/test-inspect-fstab.sh b/tests/md/test-inspect-fstab.sh index 576ce031..fec42c0d 100755 --- a/tests/md/test-inspect-fstab.sh +++ b/tests/md/test-inspect-fstab.sh @@ -58,7 +58,7 @@ if [ "$(cat test.output)" != "/: /dev/VG/Root /boot: /dev/vda1 /nosuchfile: /dev/VG/LV1 /var: /dev/sdb3" ]; then - echo "$0: error: unexpected output from inspect-get-mountpoints command" + echo "$0: error #1: unexpected output from inspect-get-mountpoints command" cat test.output exit 1 fi @@ -88,7 +88,7 @@ EOF if [ "$(cat test.output)" != "/dev/VG/Root /: /dev/VG/Root /boot: /dev/vda1" ]; then - echo "$0: error: unexpected output from inspect-get-mountpoints command" + echo "$0: error #2: unexpected output from inspect-get-mountpoints command" cat test.output exit 1 fi @@ -120,7 +120,7 @@ if [ "$(cat test.output)" != "/dev/VG/Root /: /dev/VG/Root /boot: /dev/vda1 /var: /dev/vda" ]; then - echo "$0: error: unexpected output from inspect-get-mountpoints command" + echo "$0: error #3: unexpected output from inspect-get-mountpoints command" cat test.output exit 1 fi |