From: green Date: Wed, 23 Mar 2005 21:24:06 +0000 (+0000) Subject: Make sure to really crash the kernel even if it did not crashed by just cd to X-Git-Tag: v1_8_0_110~486^7~115 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=65c4e23494c2749edabbf44a16524bc726ae7282;p=fs%2Flustre-release.git Make sure to really crash the kernel even if it did not crashed by just cd to wrong place. --- diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index 7ef1089..0f67643 100644 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -1779,9 +1779,10 @@ test_48e() { # bug 4134 $TRACE rmdir $DIR/d48e || error "remove parent $DIR/d48e failed" $TRACE touch $DIR/d48e || error "'touch $DIR/d48e' failed" $TRACE chmod +x $DIR/d48e || error "'chmod +x $DIR/d48e' failed" - # On a buggy kernel addition of "; touch file" after cd .. will + # On a buggy kernel addition of "touch foo" after cd .. will # produce kernel oops in lookup_hash_it cd -P .. && error "'cd ..' worked after recreate parent" + touch foo cd $DIR $TRACE rm $DIR/d48e || error "rm '$DIR/d48e' failed" }