From 6e18e3bd81f8dac9467aaa6cbe84499b891ca367 Mon Sep 17 00:00:00 2001 From: Pranith Kumar K Date: Tue, 22 Jan 2013 00:26:58 +0530 Subject: Test to check if inode-link failures appear Change-Id: I572a6361f46efc3a0fe7f89a15f3a847c31901a7 BUG: 861015 Signed-off-by: Pranith Kumar K Reviewed-on: http://review.gluster.org/4402 Tested-by: Gluster Build System Reviewed-by: Anand Avati --- tests/bugs/bug-861015-log.t | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 tests/bugs/bug-861015-log.t (limited to 'tests') diff --git a/tests/bugs/bug-861015-log.t b/tests/bugs/bug-861015-log.t new file mode 100644 index 00000000000..032032470fd --- /dev/null +++ b/tests/bugs/bug-861015-log.t @@ -0,0 +1,29 @@ +#!/bin/bash + +. $(dirname $0)/../include.rc +. $(dirname $0)/../volume.rc + +cleanup; + +log_wd=$(gluster --print-logdir) +TEST glusterd +TEST pidof glusterd +rm -f $log_wd/glustershd.log +TEST $CLI volume create $V0 replica 2 $H0:$B0/${V0}{0,1} +TEST $CLI volume start $V0 +TEST glusterfs --volfile-id=/$V0 --volfile-server=$H0 $M0 --attribute-timeout=0 --entry-timeout=0 +TEST kill_brick $V0 $H0 $B0/${V0}0 +cd $M0 +for i in {1..10} +do + dd if=/dev/urandom of=f bs=1M count=10 2>/dev/null +done + +cd ~ +TEST $CLI volume heal $V0 info +function count_inode_link_failures { + logfile=$1 + grep "inode link failed on the inode" $logfile | wc -l +} +EXPECT "0" count_inode_link_failures $log_wd/glustershd.log +cleanup -- cgit