From 41c40276a4251eefb82bc3140c2c2c43b717f368 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Sat, 20 Jun 2009 19:01:43 +0200 Subject: [PATCH] skip _check_test_fs unless a test is actually run Running _check_test_fs can take a non-trivial amount of time, and if a test has been skipped because it doesn't work on Linux, or it doesn't work of for ext4, it's pointless to re-run _check_test_fs. So move the call to _check_test_fs so it is only run if a test is actually run. Signed-off-by: "Theodore Ts'o" Signed-off-by: Christoph Hellwig Reviewed-by: Felix Blyakher --- check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check b/check index 545c010fc..1aae528c8 100755 --- a/check +++ b/check @@ -308,10 +308,10 @@ do then try="$try $seq" n_try=`expr $n_try + 1` + _check_test_fs fi seq="after_$seq" - _check_test_fs done interrupt=false -- 2.50.1