From: grev Date: Thu, 9 Jul 2009 08:35:24 +0000 (+0000) Subject: b=20094 X-Git-Tag: v1_9_220~37 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=979dae4f485b3663d55c129e86b4d8101dbe4bed b=20094 i=Alexander.Zarochentsev (Zam) test_121: ignore useless dd output --- 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 }