From 979dae4f485b3663d55c129e86b4d8101dbe4bed Mon Sep 17 00:00:00 2001 From: grev Date: Thu, 9 Jul 2009 08:35:24 +0000 Subject: [PATCH] b=20094 i=Alexander.Zarochentsev (Zam) test_121: ignore useless dd output --- lustre/tests/sanity.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index 899d1a6..199b055 100644 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -5207,11 +5207,11 @@ run_test 120g "Early Lock Cancel: performance test" test_121() { #bug #10589 rm -rf $DIR/$tfile - writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out/ {print $1}') + writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}') #define OBD_FAIL_LDLM_CANCEL_RACE 0x310 lctl set_param fail_loc=0x310 cancel_lru_locks osc > /dev/null - reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in/ {print $1}') + reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}') lctl set_param fail_loc=0 [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes } -- 1.8.3.1