From patchwork Thu Apr 9 19:55:14 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Sandeen X-Patchwork-Id: 11482331 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 51AB6912 for ; Thu, 9 Apr 2020 19:55:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 307642084D for ; Thu, 9 Apr 2020 19:55:25 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="ZZn10YmQ" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726757AbgDITzY (ORCPT ); Thu, 9 Apr 2020 15:55:24 -0400 Received: from us-smtp-delivery-1.mimecast.com ([205.139.110.120]:33177 "EHLO us-smtp-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725970AbgDITzX (ORCPT ); Thu, 9 Apr 2020 15:55:23 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1586462123; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=oujoFpLF58e1ZJRU7fAw2sETb1qcQ/UqTGw7xVX4kbs=; b=ZZn10YmQZvVRJbXTUXsk1jMdB8ltlcZ2z3fyyP/9y7Z/HM+7dCXHEJB2B8hKNvDGe1/w0A Sa7RcvrINae8R6cpySwpaOaZMyvkZ2WIeqpTu122VW4mI5dKw0fOixVK5Rd4+wFbyyWzJ1 A/zEUwjvc4TgDBAmCf7dYsxnZQ95dUs= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-266-Q8FTkMgwPFiDWTAwHtdn0Q-1; Thu, 09 Apr 2020 15:55:16 -0400 X-MC-Unique: Q8FTkMgwPFiDWTAwHtdn0Q-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id C07008017F3; Thu, 9 Apr 2020 19:55:15 +0000 (UTC) Received: from [127.0.0.1] (ovpn04.gateway.prod.ext.phx2.redhat.com [10.5.9.4]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 8472460BF3; Thu, 9 Apr 2020 19:55:15 +0000 (UTC) To: fstests , Namjae Jeon From: Eric Sandeen Subject: [PATCH] fstests: exclude exfat from tests which require metadata journaling Message-ID: <070404f2-9554-152b-5bbd-0fa87f4dfb65@redhat.com> Date: Thu, 9 Apr 2020 14:55:14 -0500 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:68.0) Gecko/20100101 Thunderbird/68.6.0 MIME-Version: 1.0 Content-Language: en-US X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org Signed-off-by: Eric Sandeen diff --git a/common/rc b/common/rc index 476d3d07..ec17c99a 100644 --- a/common/rc +++ b/common/rc @@ -3211,7 +3211,7 @@ _has_metadata_journaling() fi case "$FSTYP" in - ext2|vfat|msdos|udf) + ext2|vfat|msdos|udf|exfat) echo "$FSTYP does not support metadata journaling" return 1 ;;