From patchwork Fri Jun 28 22:59:08 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Theodore Ts'o X-Patchwork-Id: 11023545 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id EB007138B for ; Fri, 28 Jun 2019 22:59:19 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1337628834 for ; Fri, 28 Jun 2019 22:59:20 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 080A928880; Fri, 28 Jun 2019 22:59:20 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8AA0C28834 for ; Fri, 28 Jun 2019 22:59:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726707AbfF1W7T (ORCPT ); Fri, 28 Jun 2019 18:59:19 -0400 Received: from outgoing-auth-1.mit.edu ([18.9.28.11]:40635 "EHLO outgoing.mit.edu" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726862AbfF1W7T (ORCPT ); Fri, 28 Jun 2019 18:59:19 -0400 Received: from callcc.thunk.org (guestnat-104-133-0-109.corp.google.com [104.133.0.109] (may be forged)) (authenticated bits=0) (User authenticated as tytso@ATHENA.MIT.EDU) by outgoing.mit.edu (8.14.7/8.12.4) with ESMTP id x5SMxE07020196 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Fri, 28 Jun 2019 18:59:15 -0400 Received: by callcc.thunk.org (Postfix, from userid 15806) id 311A3420031; Fri, 28 Jun 2019 18:59:14 -0400 (EDT) From: "Theodore Ts'o" To: fstests@vger.kernel.org Cc: "Theodore Ts'o" Subject: [PATCH v2 3/5] shared,ext4: move ext[234]-specific tests out of shared/ Date: Fri, 28 Jun 2019 18:59:08 -0400 Message-Id: <20190628225910.17018-3-tytso@mit.edu> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20190628225910.17018-1-tytso@mit.edu> References: <20190628225910.17018-1-tytso@mit.edu> MIME-Version: 1.0 Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Move the following tests: shared/005 --> ext4/040 shared/007 --> ext4/041 shared/289 --> ext4/042 Signed-off-by: Theodore Ts'o --- Changes since v1: - none tests/{shared/005 => ext4/040} | 2 +- tests/{shared/007.out => ext4/040.out} | 2 +- tests/{shared/007 => ext4/041} | 2 +- tests/{shared/005.out => ext4/041.out} | 2 +- tests/{shared/289 => ext4/042} | 2 +- tests/{shared/289.out => ext4/042.out} | 2 +- tests/ext4/group | 3 +++ tests/shared/group | 3 --- 8 files changed, 9 insertions(+), 9 deletions(-) rename tests/{shared/005 => ext4/040} (97%) rename tests/{shared/007.out => ext4/040.out} (77%) rename tests/{shared/007 => ext4/041} (97%) rename tests/{shared/005.out => ext4/041.out} (77%) rename tests/{shared/289 => ext4/042} (98%) rename tests/{shared/289.out => ext4/042.out} (67%) diff --git a/tests/shared/005 b/tests/ext4/040 similarity index 97% rename from tests/shared/005 rename to tests/ext4/040 index 67940dd0..3e475f7d 100755 --- a/tests/shared/005 +++ b/tests/ext4/040 @@ -2,7 +2,7 @@ # SPDX-License-Identifier: GPL-2.0 # Copyright (c) 2017 Oracle, Inc. All Rights Reserved. # -# FSQA Test No. 005 +# FSQA Test No. ext4/040 (was shared/005) # # Since loff_t is a signed type, it is invalid for a filesystem to load # an inode with i_size = -1ULL. Unfortunately, nobody checks this, diff --git a/tests/shared/007.out b/tests/ext4/040.out similarity index 77% rename from tests/shared/007.out rename to tests/ext4/040.out index 3afba59a..dbccb495 100644 --- a/tests/shared/007.out +++ b/tests/ext4/040.out @@ -1,4 +1,4 @@ -QA output created by 007 +QA output created by 040 Format and mount Corrupt filesystem Remount, try to append diff --git a/tests/shared/007 b/tests/ext4/041 similarity index 97% rename from tests/shared/007 rename to tests/ext4/041 index 65cb5273..5c9c0713 100755 --- a/tests/shared/007 +++ b/tests/ext4/041 @@ -2,7 +2,7 @@ # SPDX-License-Identifier: GPL-2.0 # Copyright (c) 2017 Oracle, Inc. All Rights Reserved. # -# FSQA Test No. 007 +# FSQA Test No. ext4/041 (was shared/007) # # Since loff_t is a signed type, it is invalid for a filesystem to load # an inode with i_size = -1ULL. Unfortunately, nobody checks this, diff --git a/tests/shared/005.out b/tests/ext4/041.out similarity index 77% rename from tests/shared/005.out rename to tests/ext4/041.out index 06e3fcdc..97480072 100644 --- a/tests/shared/005.out +++ b/tests/ext4/041.out @@ -1,4 +1,4 @@ -QA output created by 005 +QA output created by 041 Format and mount Corrupt filesystem Remount, try to append diff --git a/tests/shared/289 b/tests/ext4/042 similarity index 98% rename from tests/shared/289 rename to tests/ext4/042 index 94b64430..17d482a1 100755 --- a/tests/shared/289 +++ b/tests/ext4/042 @@ -2,7 +2,7 @@ # SPDX-License-Identifier: GPL-2.0 # Copyright (c) 2012 Red Hat, Inc. All Rights Reserved. # -# FS QA Test No. 289 +# FS QA Test No. ext4/042 (was shared/289) # # Test overhead & df output for extN filesystems # diff --git a/tests/shared/289.out b/tests/ext4/042.out similarity index 67% rename from tests/shared/289.out rename to tests/ext4/042.out index a4de760a..1bd6f82a 100644 --- a/tests/shared/289.out +++ b/tests/ext4/042.out @@ -1,3 +1,3 @@ -QA output created by 289 +QA output created by 042 minix f_blocks is in range bsd f_blocks is in range diff --git a/tests/ext4/group b/tests/ext4/group index 6418d82d..9dfc0d35 100644 --- a/tests/ext4/group +++ b/tests/ext4/group @@ -42,6 +42,9 @@ 037 auto quick 038 auto quick 039 auto enospc rw +040 dangerous_fuzzers +041 dangerous_fuzzers +042 auto quick 271 auto rw quick 301 aio auto ioctl rw stress defrag 302 aio auto ioctl rw stress defrag diff --git a/tests/shared/group b/tests/shared/group index 6f184946..3507d7d4 100644 --- a/tests/shared/group +++ b/tests/shared/group @@ -4,13 +4,10 @@ # - comment line before each group is "new" description # 002 auto metadata quick log -005 dangerous_fuzzers 006 auto enospc -007 dangerous_fuzzers 008 auto stress dedupe 009 auto stress dedupe 010 auto stress dedupe 011 auto quick 032 mkfs auto quick -289 auto quick 298 auto trim