From: Jinshan Xiong Date: Thu, 21 Jun 2012 05:59:49 +0000 (+0800) Subject: LU-1030 test: delete test file at the end of test script X-Git-Tag: 2.2.58~28 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=c691d11bd761387b1ea7016c8e6c622af3effbfe;p=fs%2Flustre-release.git LU-1030 test: delete test file at the end of test script At sanity.sh:test_49, we need to delete the test file after test is finished otherwise the following test cases may fail due to lack of storage capacity. Signed-off-by: Jinshan Xiong Change-Id: Iec9e93f1a4844156345608bf9f7a9bf679b36253 Reviewed-on: http://review.whamcloud.com/3158 Reviewed-by: Yu Jian Tested-by: Hudson Reviewed-by: Andreas Dilger Tested-by: Maloo --- diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index 190f128..b7201d7 100644 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -3051,6 +3051,7 @@ test_49() { # LU-1030 done # restore original max_pages_per_rpc $LCTL set_param $osc1_mppc=$orig_mppc + rm $DIR/$tfile || error "rm $DIR/$tfile failed" } run_test 49 "Change max_pages_per_rpc won't break osc extent"