From patchwork Wed Aug 26 09:14:37 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ari Sundholm X-Patchwork-Id: 7075721 Return-Path: X-Original-To: patchwork-fstests@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 15DF4C05AC for ; Wed, 26 Aug 2015 09:15:27 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 120D1208DE for ; Wed, 26 Aug 2015 09:15:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 2B0C0208BB for ; Wed, 26 Aug 2015 09:15:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756671AbbHZJPR (ORCPT ); Wed, 26 Aug 2015 05:15:17 -0400 Received: from nebula-exfe-01.nebula.fi ([83.145.198.163]:60492 "EHLO ex10.nebula.fi" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1756610AbbHZJPN (ORCPT ); Wed, 26 Aug 2015 05:15:13 -0400 Received: from [192.168.75.117] (194.100.106.190) by ex10.nebula.fi (83.145.198.163) with Microsoft SMTP Server (TLS) id 14.3.224.2; Wed, 26 Aug 2015 12:15:11 +0300 Message-ID: <1440580477.29614.3.camel@ari-macbook> Subject: [PATCH 1/2] Add checks for hardlinks support. From: Ari Sundholm To: Date: Wed, 26 Aug 2015 12:14:37 +0300 Organization: Tuxera Inc. X-Mailer: Evolution 3.10.4-0ubuntu2 MIME-Version: 1.0 X-Originating-IP: [194.100.106.190] Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org X-Spam-Status: No, score=-8.3 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable 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 From: Ari Sundholm Signed-off-by: Ari Sundholm Signed-off-by: line, it's just a habit due to a pedantic reading of the --- common/rc | 12 ++++++++++++ tests/generic/002 | 1 + tests/generic/039 | 1 + tests/generic/040 | 1 + tests/generic/041 | 1 + tests/generic/056 | 1 + tests/generic/057 | 1 + tests/generic/065 | 1 + tests/generic/066 | 1 + tests/generic/084 | 1 + tests/generic/090 | 1 + tests/generic/104 | 1 + tests/generic/106 | 1 + 13 files changed, 24 insertions(+) diff --git a/common/rc b/common/rc index 780b7ed..d3aeddf 100644 --- a/common/rc +++ b/common/rc @@ -2714,6 +2714,18 @@ _require_test_symlinks() rm -f $target $link } +_require_test_hardlinks() +{ + target=`mktemp -p $TEST_DIR` + link=`mktemp -p $TEST_DIR -u` + ln `basename $target` $link + if [ "$?" -ne 0 ]; then + rm -f $target + _notrun "Require hardlinks support" + fi + rm -f $target $link +} + _require_test_fcntl_advisory_locks() { [ "$FSTYP" != "cifs" ] && return 0 diff --git a/tests/generic/002 b/tests/generic/002 index f63b208..0b96709 100755 --- a/tests/generic/002 +++ b/tests/generic/002 @@ -43,6 +43,7 @@ _cleanup() # real QA test starts here _supported_fs generic _supported_os IRIX Linux +_require_test_hardlinks _require_test echo "Silence is goodness ..." diff --git a/tests/generic/039 b/tests/generic/039 index 4bbfc50..367a6d0 100755 --- a/tests/generic/039 +++ b/tests/generic/039 @@ -55,6 +55,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 _supported_fs generic _supported_os Linux _need_to_be_root +_require_test_hardlinks _require_scratch _require_dm_flakey _require_metadata_journaling $SCRATCH_DEV diff --git a/tests/generic/040 b/tests/generic/040 index c841fbc..1b8287f 100755 --- a/tests/generic/040 +++ b/tests/generic/040 @@ -60,6 +60,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 _supported_fs generic _supported_os Linux _need_to_be_root +_require_test_hardlinks _require_scratch _require_dm_flakey _require_metadata_journaling $SCRATCH_DEV diff --git a/tests/generic/041 b/tests/generic/041 index f38b662..588d5ff 100755 --- a/tests/generic/041 +++ b/tests/generic/041 @@ -64,6 +64,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 _supported_fs generic _supported_os Linux _need_to_be_root +_require_test_hardlinks _require_scratch _require_dm_flakey _require_metadata_journaling $SCRATCH_DEV diff --git a/tests/generic/056 b/tests/generic/056 index 8bb1522..e111bec 100755 --- a/tests/generic/056 +++ b/tests/generic/056 @@ -53,6 +53,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 _supported_fs generic _supported_os Linux _need_to_be_root +_require_test_hardlinks _require_scratch _require_dm_flakey _require_metadata_journaling $SCRATCH_DEV diff --git a/tests/generic/057 b/tests/generic/057 index 3b9f89e..d3b1aa2 100755 --- a/tests/generic/057 +++ b/tests/generic/057 @@ -53,6 +53,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 _supported_fs generic _supported_os Linux _need_to_be_root +_require_test_hardlinks _require_scratch _require_dm_flakey _require_metadata_journaling $SCRATCH_DEV diff --git a/tests/generic/065 b/tests/generic/065 index 739a4d5..5403c53 100755 --- a/tests/generic/065 +++ b/tests/generic/065 @@ -54,6 +54,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 _supported_fs generic _supported_os Linux _need_to_be_root +_require_test_hardlinks _require_scratch _require_dm_flakey _require_metadata_journaling $SCRATCH_DEV diff --git a/tests/generic/066 b/tests/generic/066 index cb36506..51aa22a 100755 --- a/tests/generic/066 +++ b/tests/generic/066 @@ -58,6 +58,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 _supported_fs generic _supported_os Linux _need_to_be_root +_require_test_hardlinks _require_scratch _require_dm_flakey _require_attrs diff --git a/tests/generic/084 b/tests/generic/084 index 3fec6c2..86c38db 100755 --- a/tests/generic/084 +++ b/tests/generic/084 @@ -46,6 +46,7 @@ _cleanup() # real QA test starts here _supported_fs generic _supported_os Linux +_require_test_hardlinks _require_scratch link_unlink_storm() diff --git a/tests/generic/090 b/tests/generic/090 index a1f2b89..c3eeb1a 100755 --- a/tests/generic/090 +++ b/tests/generic/090 @@ -52,6 +52,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 _supported_fs generic _supported_os Linux _need_to_be_root +_require_test_hardlinks _require_scratch _require_dm_flakey _require_metadata_journaling $SCRATCH_DEV diff --git a/tests/generic/104 b/tests/generic/104 index eeb7363..9fed5f2 100755 --- a/tests/generic/104 +++ b/tests/generic/104 @@ -48,6 +48,7 @@ _cleanup() _need_to_be_root _supported_fs generic _supported_os Linux +_require_test_hardlinks _require_scratch _require_dm_flakey _require_metadata_journaling $SCRATCH_DEV diff --git a/tests/generic/106 b/tests/generic/106 index 0afee41..59efe7c 100755 --- a/tests/generic/106 +++ b/tests/generic/106 @@ -47,6 +47,7 @@ _cleanup() _need_to_be_root _supported_fs generic _supported_os Linux +_require_test_hardlinks _require_scratch _require_dm_flakey _require_metadata_journaling $SCRATCH_DEV