X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lustre%2Ftests%2Fsanity.sh;h=199b055333aa707d86707d1460169e8f5cfe9d25;hp=899d1a647a04c08bc1b194ddd6152fddb465297a;hb=979dae4f485b3663d55c129e86b4d8101dbe4bed;hpb=5b75ca77d0417370ede70e98cbd7176ccb26ac46 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 }