From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id BC340C43334 for ; Tue, 28 Jun 2022 18:25:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232224AbiF1SZy (ORCPT ); Tue, 28 Jun 2022 14:25:54 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34128 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231223AbiF1SZy (ORCPT ); Tue, 28 Jun 2022 14:25:54 -0400 Received: from outgoing.mit.edu (outgoing-auth-1.mit.edu [18.9.28.11]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 651C52125C for ; Tue, 28 Jun 2022 11:25:53 -0700 (PDT) Received: from cwcc.thunk.org (pool-173-48-118-63.bstnma.fios.verizon.net [173.48.118.63]) (authenticated bits=0) (User authenticated as tytso@ATHENA.MIT.EDU) by outgoing.mit.edu (8.14.7/8.12.4) with ESMTP id 25SIPnHt025888 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Tue, 28 Jun 2022 14:25:50 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mit.edu; s=outgoing; t=1656440750; bh=8xanglkN43VBugMwl8Hkn6Aw6FFf9nySfPvIfCCfQOE=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=cMdDV62kcQ+0Kel6LnPVGVwQSgYSMhBLGyj1T1uw28/0lL6IQ/E0OPQgq4u+NHYT8 szxDEBMK2Z3TS+4CptQOka5eQn8s9UiamobzrjZijGralqqbagr9srX/Yx3em2wAM1 0Xbqo+I1tl5Kj7syDvGYQxdUo+bfdcqlP+/2pnFjK6BLOTtzBYzv2OjAqvPG0ISMZD CIATxspv9ZYVtbXwiv2bAnbAxU7cX3ldK3NSlr0riEcAcTKn6vr+vfeCyZxTdv/uiF AAk7je0cUthBYIr1FmRDNhjiv1GnDygCe+OAZHW49F2eI6BhUx9TECeLfPSY0kZOpR VNMKcjIExh3mw== Received: by cwcc.thunk.org (Postfix, from userid 15806) id 7E39D15C4314; Tue, 28 Jun 2022 14:25:49 -0400 (EDT) From: "Theodore Ts'o" To: fstests@vger.kernel.org Cc: "Theodore Ts'o" Subject: [PATCH 2/6] ext4/044: skip test if the file system does not have a journal Date: Tue, 28 Jun 2022 14:25:41 -0400 Message-Id: <20220628182545.1834145-3-tytso@mit.edu> X-Mailer: git-send-email 2.31.0 In-Reply-To: <20220628182545.1834145-1-tytso@mit.edu> References: <20220628182545.1834145-1-tytso@mit.edu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org This test mounts the file system using "mount -t ext3"; if the file system config creates the file system without the jbd2 journal, the "mount -t ext3" will fail. So skip this test in that case. Signed-off-by: Theodore Ts'o --- tests/ext4/044 | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ext4/044 b/tests/ext4/044 index 46e44053..158e2ac5 100755 --- a/tests/ext4/044 +++ b/tests/ext4/044 @@ -16,6 +16,7 @@ _begin_fstest auto quick _supported_fs ext4 _require_scratch _require_test_program "t_get_file_time" +_require_metadata_journaling echo "Silence is golden" -- 2.31.0