summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2013-05-30 17:55:44 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2013-05-30 17:56:47 +0200
commit09cc5f65dbe34027c91011907e25ea4c21edfd13 (patch)
tree95284d5100c40086b1a57d1dc565e6b7f220522f
parent6f9366696c76863662e6cb12de467b5f748c8495 (diff)
downloadlvm2-09cc5f65dbe34027c91011907e25ea4c21edfd13.tar.gz
tests: snapshot needs 3 chunks
-rw-r--r--test/shell/lvcreate-small-snap.sh15
1 files changed, 8 insertions, 7 deletions
diff --git a/test/shell/lvcreate-small-snap.sh b/test/shell/lvcreate-small-snap.sh
index 9b43868c4..e0e6d1a8c 100644
--- a/test/shell/lvcreate-small-snap.sh
+++ b/test/shell/lvcreate-small-snap.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-# Copyright (C) 2010 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2010-2013 Red Hat, Inc. All rights reserved.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
@@ -11,14 +11,15 @@
. lib/test
-aux prepare_pvs 3
+aux prepare_pvs
-vgcreate -c n -s 1k $vg $(cat DEVICES)
+vgcreate -s 1k $vg $(cat DEVICES)
-lvcreate -n one -l 10 $vg
-lvcreate -s -l 8 -n snapA $vg/one
-lvcreate -s -c 4k -l 8 -n snapX1 $vg/one
-lvcreate -s -c 8k -l 16 -n snapX2 $vg/one
+# 3 Chunks
+lvcreate -aey -n one -l 10 $vg
+lvcreate -s -l 12 -n snapA $vg/one
+lvcreate -s -c 4k -l 12 -n snapX1 $vg/one
+lvcreate -s -c 8k -l 24 -n snapX2 $vg/one
# Check that snapshots that are too small are caught with correct error.
not lvcreate -s -c 8k -l 8 -n snapX3 $vg/one 2>&1 | tee lvcreate.out