From patchwork Thu Dec 25 01:32:15 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qu Wenruo X-Patchwork-Id: 5540801 Return-Path: X-Original-To: patchwork-linux-btrfs@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 35131BEEA8 for ; Thu, 25 Dec 2014 01:34:32 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 407EB201D3 for ; Thu, 25 Dec 2014 01:34:31 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 57B8F201C7 for ; Thu, 25 Dec 2014 01:34:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752096AbaLYBe0 (ORCPT ); Wed, 24 Dec 2014 20:34:26 -0500 Received: from cn.fujitsu.com ([59.151.112.132]:47004 "EHLO heian.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1752015AbaLYBeQ (ORCPT ); Wed, 24 Dec 2014 20:34:16 -0500 X-IronPort-AV: E=Sophos;i="5.04,848,1406563200"; d="scan'208";a="47022183" Received: from unknown (HELO edo.cn.fujitsu.com) ([10.167.33.5]) by heian.cn.fujitsu.com with ESMTP; 25 Dec 2014 09:30:54 +0800 Received: from G08CNEXCHPEKD02.g08.fujitsu.local (localhost.localdomain [127.0.0.1]) by edo.cn.fujitsu.com (8.14.3/8.13.1) with ESMTP id sBP1XmeM020171 for ; Thu, 25 Dec 2014 09:33:48 +0800 Received: from localhost.localdomain (10.167.226.33) by G08CNEXCHPEKD02.g08.fujitsu.local (10.167.33.89) with Microsoft SMTP Server (TLS) id 14.3.181.6; Thu, 25 Dec 2014 09:34:15 +0800 From: Qu Wenruo To: Subject: [PATCH 5/5] btrfs-progs: Move extent tree rebuild test to its dir Date: Thu, 25 Dec 2014 09:32:15 +0800 Message-ID: <1419471135-10878-6-git-send-email-quwenruo@cn.fujitsu.com> X-Mailer: git-send-email 2.2.1 In-Reply-To: <1419471135-10878-1-git-send-email-quwenruo@cn.fujitsu.com> References: <1419471135-10878-1-git-send-email-quwenruo@cn.fujitsu.com> MIME-Version: 1.0 X-Originating-IP: [10.167.226.33] Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Move extent tree rebuild teset to its dir. Signed-off-by: Qu Wenruo --- tests/fsck-tests.sh | 39 -------------------- tests/fsck-tests/013-extent-tree-rebuild/test.sh | 47 ++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 39 deletions(-) create mode 100755 tests/fsck-tests/013-extent-tree-rebuild/test.sh diff --git a/tests/fsck-tests.sh b/tests/fsck-tests.sh index a992b45..df21423 100755 --- a/tests/fsck-tests.sh +++ b/tests/fsck-tests.sh @@ -60,42 +60,3 @@ do fi cd $top done - -if [ -z $TEST_DEV ] || [ -z $TEST_MNT ];then - echo " [NOTRUN] extent tree rebuild" - exit 0 -fi - -# test whether fsck can rebuild a corrupted extent tree -test_extent_tree_rebuild() -{ - echo " [TEST] extent tree rebuild" - $top/mkfs.btrfs -f $TEST_DEV >> /dev/null 2>&1 || _fail "fail to mkfs" - - run_check mount $TEST_DEV $TEST_MNT - cp -aR /lib/modules/`uname -r`/ $TEST_MNT 2>&1 - - for i in `seq 1 100`;do - $top/btrfs sub snapshot $TEST_MNT \ - $TEST_MNT/snapaaaaaaa_$i >& /dev/null - done - run_check umount $TEST_DEV - - # get extent root bytenr - extent_root_bytenr=`$top/btrfs-debug-tree -r $TEST_DEV | \ - grep extent | awk '{print $7}'` - if [ -z $extent_root_bytenr ];then - _fail "fail to get extent root bytenr" - fi - - # corrupt extent root node block - run_check $top/btrfs-corrupt-block -l $extent_root_bytenr \ - -b 4096 $TEST_DEV - - $top/btrfs check $TEST_DEV >& /dev/null && \ - _fail "btrfs check should detect failure" - run_check $top/btrfs check --init-extent-tree $TEST_DEV - run_check $top/btrfs check $TEST_DEV -} - -test_extent_tree_rebuild diff --git a/tests/fsck-tests/013-extent-tree-rebuild/test.sh b/tests/fsck-tests/013-extent-tree-rebuild/test.sh new file mode 100755 index 0000000..ce51e07 --- /dev/null +++ b/tests/fsck-tests/013-extent-tree-rebuild/test.sh @@ -0,0 +1,47 @@ +#!/bin/bash + +source $top/tests/common + +if [ -z $TEST_DEV ]; then + echo " [NOTRUN] extent tree rebuild, need TEST_DEV variant" + exit 0 +fi + +if [ -z $TEST_MNT ];then + echo " [NOTRUN] extent tree rebuild, need TEST_MNT variant" + exit 0 +fi + +# test whether fsck can rebuild a corrupted extent tree +test_extent_tree_rebuild() +{ + echo " [TEST] extent tree rebuild" + $top/mkfs.btrfs -f $TEST_DEV >> /dev/null 2>&1 || _fail "fail to mkfs" + + run_check mount $TEST_DEV $TEST_MNT + cp -aR /lib/modules/`uname -r`/ $TEST_MNT 2>&1 + + for i in `seq 1 100`;do + $top/btrfs sub snapshot $TEST_MNT \ + $TEST_MNT/snapaaaaaaa_$i >& /dev/null + done + run_check umount $TEST_DEV + + # get extent root bytenr + extent_root_bytenr=`$top/btrfs-debug-tree -r $TEST_DEV | \ + grep extent | awk '{print $7}'` + if [ -z $extent_root_bytenr ];then + _fail "fail to get extent root bytenr" + fi + + # corrupt extent root node block + run_check $top/btrfs-corrupt-block -l $extent_root_bytenr \ + -b 4096 $TEST_DEV + + $top/btrfs check $TEST_DEV >& /dev/null && \ + _fail "btrfs check should detect failure" + run_check $top/btrfs check --init-extent-tree $TEST_DEV + run_check $top/btrfs check $TEST_DEV +} + +test_extent_tree_rebuild