From fe120d326fd850bbea8cc5c0b3a9ba2764289e75 Mon Sep 17 00:00:00 2001 From: Dan Lambright Date: Wed, 11 Nov 2015 15:54:10 -0500 Subject: tests: fix spurious error in fops-during-migration-pause.t The test did not spend long enough time moving the file for the pause to occur simultaneously, leading to failure. Solution is to elongate that time by increasing the file size. This is a backport of 12570 > Change-Id: I1727fa9e3f7a987dfa07dd5da44c68d3f17218d9 > BUG: 1280428 > Signed-off-by: Dan Lambright > Reviewed-on: http://review.gluster.org/12570 > Tested-by: NetBSD Build System > Tested-by: Gluster Build System > Reviewed-by: Joseph Fernandes Signed-off-by: Dan Lambright Change-Id: I32c0271acebc7f33dea790b9b2bee62849c7b984 BUG: 1280715 Reviewed-on: http://review.gluster.org/12571 Reviewed-by: Joseph Fernandes Tested-by: NetBSD Build System Tested-by: Gluster Build System Reviewed-by: Dan Lambright Tested-by: Dan Lambright --- tests/basic/tier/fops-during-migration-pause.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/basic/tier/fops-during-migration-pause.t b/tests/basic/tier/fops-during-migration-pause.t index 702465f4191..332e4bb1c03 100755 --- a/tests/basic/tier/fops-during-migration-pause.t +++ b/tests/basic/tier/fops-during-migration-pause.t @@ -56,10 +56,10 @@ TEST glusterfs -s $H0 --volfile-id $V0 $M0 TEST mkdir $M0/dir1 -# Create a large file (200MB), so that rebalance takes time +# Create a large file (800MB), so that rebalance takes time # The file will be created on the hot tier -dd if=/dev/zero of=$M0/dir1/FILE1 bs=64k count=5120 +dd if=/dev/zero of=$M0/dir1/FILE1 bs=256k count=5120 # Get the path of the file on the hot tier HPATH=`find $B0/hot/ -name FILE1` -- cgit