From patchwork Fri Apr 8 14:10:56 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: fs_tests: make the test-suite finish faster From: Artem Bityutskiy X-Patchwork-Id: 90345 Message-Id: <1302271856-8386-1-git-send-email-dedekind1@gmail.com> To: MTD list Cc: Adrian Hunter Date: Fri, 8 Apr 2011 17:10:56 +0300 From: Artem Bityutskiy Currently the stress tests may run up to 1 hour, make the limit to be 10 minutes instead. Signed-off-by: Artem Bityutskiy --- tests/fs-tests/run_all.sh | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/fs-tests/run_all.sh b/tests/fs-tests/run_all.sh index e79993a..7c82921 100755 --- a/tests/fs-tests/run_all.sh +++ b/tests/fs-tests/run_all.sh @@ -42,8 +42,8 @@ rm -rf ${TEST_DIR}/* cd stress || exit 1 -./stress00.sh 3600 || exit 1 +./stress00.sh 360 || exit 1 -./stress01.sh 3600 || exit 1 +./stress01.sh 360 || exit 1 cd .. || exit 1