From 121b9a2e4ce81683cf2fafdefe84eee57368abba Mon Sep 17 00:00:00 2001 From: Qu Wenruo Date: Wed, 18 Dec 2019 09:19:37 +0800 Subject: [PATCH] btrfs-progs: tests: Add --force for repair command Since commit e388bf38 ("btrfs-progs: check: warn users about the possible dangers of --repair") `btrfs check --repair` will wait 10 seconds before really repair the fs. This hugely slow down the fsck tests. Add --force for check_image() Signed-off-by: Qu Wenruo Signed-off-by: David Sterba --- tests/common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common b/tests/common index ca098444..605cf72c 100644 --- a/tests/common +++ b/tests/common @@ -331,7 +331,7 @@ check_image() "$TOP/btrfs" check "$image" >> "$RESULTS" 2>&1 [ $? -eq 0 ] && _fail "btrfs check should have detected corruption" - run_check "$TOP/btrfs" check --repair "$image" + run_check "$TOP/btrfs" check --repair --force "$image" run_check "$TOP/btrfs" check "$image" }