From patchwork Tue Feb 5 18:48:16 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 10798063 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 3E8BE1823 for ; Tue, 5 Feb 2019 18:48:20 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2F7392C61A for ; Tue, 5 Feb 2019 18:48:20 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 21B482C651; Tue, 5 Feb 2019 18:48: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.7 required=2.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,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 CBB602C61A for ; Tue, 5 Feb 2019 18:48:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727509AbfBESsT (ORCPT ); Tue, 5 Feb 2019 13:48:19 -0500 Received: from bombadil.infradead.org ([198.137.202.133]:59746 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726922AbfBESsT (ORCPT ); Tue, 5 Feb 2019 13:48:19 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: MIME-Version:Message-Id:Date:Subject:To:From:Sender:Reply-To:Cc:Content-Type: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=UsGiAHVE5Z2plGRMi3ORXyIdA3Fbboj1cKDLUsgAyys=; b=l74JfZV49aHz5lpgnoyR7iFjD voN0clpHbdndNcW9g4/QL7eRn3d58KepOPP5QhFxuX+NyPLpuz8ilLJwFDjGFXNLU3AVw+dCsGJOS aDpxd+p8N+2h0J0M41d3D7z4KrQoIjm1ipewhB+xodj2H++d9A7WyInODNyQJpO2iPyZwvddVPums axezFkAeG55ytA0OP8cFbkhDJAQdpx1mwcGgR2A3B2C2bvNc7F88/W9c/R5GfAvgsAjLjtw+JU4na K4TQ3HKI+nz22k/yuGmlBISkp2NCI4DEG8PFqnvQHR6w37soiLg4qWy+A0joqMHBMYDwgN8Cw9WDF XDAutEgyQ==; Received: from 089144212163.atnat0021.highway.a1.net ([89.144.212.163] helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1gr5la-0001no-51 for fstests@vger.kernel.org; Tue, 05 Feb 2019 18:48:18 +0000 From: Christoph Hellwig To: fstests@vger.kernel.org Subject: [PATCH] xfs/252: requires fallocate support for preallocation Date: Tue, 5 Feb 2019 19:48:16 +0100 Message-Id: <20190205184816.20330-1-hch@lst.de> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP xfs/252 has a few feature tests, but misses checking for preallocation support. Because of that it will fail instead of not being run for and XFS file system in always COW mode. Signed-off-by: Christoph Hellwig --- tests/xfs/252 | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/xfs/252 b/tests/xfs/252 index df795b81..42650ad1 100755 --- a/tests/xfs/252 +++ b/tests/xfs/252 @@ -31,6 +31,7 @@ _supported_fs xfs _supported_os Linux _require_test +_require_xfs_io_command "fallocate" _require_xfs_io_command "fpunch" _require_xfs_io_command "fiemap"