From 1cb05730763d98f65c28246c8808217e6e9d6948 Mon Sep 17 00:00:00 2001 From: Pranith Kumar K Date: Mon, 14 Oct 2019 10:29:31 +0530 Subject: tests: Fix spurious failure fixes: bz#1759002 Change-Id: I4d49e1c2ca9b3c1d74b9dd5a30f1c66983a76529 Signed-off-by: Pranith Kumar K --- tests/bugs/replicate/bug-1744548-heal-timeout.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/bugs') diff --git a/tests/bugs/replicate/bug-1744548-heal-timeout.t b/tests/bugs/replicate/bug-1744548-heal-timeout.t index 0aaa3eabc38..c208112c8b0 100644 --- a/tests/bugs/replicate/bug-1744548-heal-timeout.t +++ b/tests/bugs/replicate/bug-1744548-heal-timeout.t @@ -5,8 +5,8 @@ . $(dirname $0)/../../afr.rc function get_cumulative_opendir_count { -#sed 'n:d' prints odd-numbered lines - $CLI volume profile $V0 info |grep OPENDIR|sed 'n;d' | awk '{print $8}'|tr -d '\n' +#sed command prints content between Cumulative and Interval, this keeps content from Cumulative stats + $CLI volume profile $V0 info |sed -n '/^Cumulative/,/^Interval/p'|grep OPENDIR| awk '{print $8}'|tr -d '\n' } cleanup; -- cgit