summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2015-05-27 11:59:10 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2015-05-27 11:59:10 +0200
commit778b66a7199b5fe05d59df55bd23e681759c2bbe (patch)
tree1964f50ab95baca964354cb192a58fb5711011e5
parent6e4c04b1becf171d6c337771839cf5a82bd901c0 (diff)
downloadlvm2-778b66a7199b5fe05d59df55bd23e681759c2bbe.tar.gz
tests: check for idle only for raid type
-rw-r--r--test/lib/check.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/lib/check.sh b/test/lib/check.sh
index 23af3a919..a6a9b3823 100644
--- a/test/lib/check.sh
+++ b/test/lib/check.sh
@@ -202,6 +202,10 @@ in_sync() {
# 6th argument is the sync ratio for RAID
idx=6
type=${a[3]}
+ if [ ${a[$(($idx + 1))]} != "idle" ]; then
+ echo "$lvm_name ($type$snap) is not in-sync"
+ return 1
+ fi
elif [ ${a[2]} = "mirror" ]; then
# 4th Arg tells us how far to the sync ratio
idx=$((${a[3]} + 4))
@@ -212,7 +216,7 @@ in_sync() {
b=( $(echo ${a[$idx]} | sed s:/:' ':) )
- if [ ${a[$(($idx + 1))]} != "idle" -o ${b[0]} -eq 0 -o ${b[0]} != ${b[1]} ]; then
+ if [ ${b[0]} -eq 0 -o ${b[0]} != ${b[1]} ]; then
echo "$lvm_name ($type$snap) is not in-sync"
return 1
fi
@@ -222,7 +226,6 @@ in_sync() {
fi
echo "$lvm_name ($type$snap) is in-sync"
- return 0
}
active() {