summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2021-01-22 20:17:57 +0100
committerZdenek Kabelac <zkabelac@redhat.com>2021-02-01 12:13:49 +0100
commit25b942a8acd35c44ea39ff1840d8c4af0bed12d6 (patch)
treed05728b0a42bc40f33f942e5c205a9335a078004
parentb26e565ee5d27314a58cba31e0a017d927698440 (diff)
downloadlvm2-25b942a8acd35c44ea39ff1840d8c4af0bed12d6.tar.gz
aux: update thin_restore_needs_more_volumes
Version 0.8.5-2.el7 needs to return 0;
-rw-r--r--test/lib/aux.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/lib/aux.sh b/test/lib/aux.sh
index 5dbb580be..31741ac74 100644
--- a/test/lib/aux.sh
+++ b/test/lib/aux.sh
@@ -1471,6 +1471,7 @@ thin_restore_needs_more_volumes() {
case $("$LVM_TEST_THIN_RESTORE_CMD" -V) in
# With older version of thin-tool we got slightly more compact metadata
0.[0-6]*|0.7.0*) return 0 ;;
+ 0.8.5-2.el7) return 0 ;;
esac
return 1
}