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 81815C4332F for ; Tue, 24 May 2022 14:54:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238434AbiEXOyU (ORCPT ); Tue, 24 May 2022 10:54:20 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40954 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238442AbiEXOyS (ORCPT ); Tue, 24 May 2022 10:54:18 -0400 Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B27C96EC46; Tue, 24 May 2022 07:54:17 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: usama.anjum) with ESMTPSA id 2319D1F43080 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1653404055; bh=k5OX95HbBLW6/3MZt89HO8rM2fIhljz076cqcrPbFY4=; h=Date:Cc:Subject:To:References:From:In-Reply-To:From; b=ffLtEKY/+PRMFgmAMbqx0/a2UvN/vMNfFgJXa+cEo/BPwpnHmDE2bIjCYczbxSzf/ BgietX5cA+fGX47/j5O1cKWMd8KXNRu7Q+B+2biR8mLX2AyBJRnPjkQ9S/xY/iwT89 BHCYna7nJVKjZD/lmHnM1/JXOWyJSg+OT3Q655fCshARxlN2ZBXn6BtXq0/Bdf7D1d +vNx+iRiqLCrAx6uV3HjZmQsjjiNqJY4L70BB4B+Fu+SMcvnyE9x1NgJVAvXQ+f4N/ aIs9+zlh6mjG6QoUnivk783/1p2vSyQXyf+aC6pFfMXlDwiLmIq7VDtEshIz1P82Ep st3W6daIQ9zxw== Message-ID: <170151f7-9d46-6b01-e281-0f675a3b523f@collabora.com> Date: Tue, 24 May 2022 19:54:07 +0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.0 Cc: usama.anjum@collabora.com, Chung-Chiang Cheng , Lennart Poettering , Colin Walters , Peter Jones , Alexander Larsson , Alberto Ruiz , Christian Kellner , OGAWA Hirofumi , Shuah Khan , linux-kselftest@vger.kernel.org Subject: Re: [PATCH v2 3/3] selftests/filesystems: add a vfat RENAME_EXCHANGE test Content-Language: en-US To: Javier Martinez Canillas , linux-kernel@vger.kernel.org References: <20220524073604.247790-1-javierm@redhat.com> <20220524073604.247790-4-javierm@redhat.com> From: Muhammad Usama Anjum In-Reply-To: <20220524073604.247790-4-javierm@redhat.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org On 5/24/22 12:36 PM, Javier Martinez Canillas wrote: > diff --git a/tools/testing/selftests/filesystems/fat/Makefile b/tools/testing/selftests/filesystems/fat/Makefile > new file mode 100644 > index 000000000000..93ee73c16828 > --- /dev/null > +++ b/tools/testing/selftests/filesystems/fat/Makefile > @@ -0,0 +1,7 @@ > +# SPDX-License-Identifier: GPL-2.0 > + > +TEST_PROGS := run_fat_tests.sh > +TEST_GEN_PROGS_EXTENDED := rename_exchange Please create a .gitignore file and add rename_exchange to it. > +CFLAGS += -O2 -g -Wall -I../../../../usr/include/ Build may fail if kernel on which this test is being build has old headers. Always use $(KHDR_INCLUDES) instead of "-I../../../../usr/include/" to use the kernel headers from the kernel source instead of the natively installed headers. -- Muhammad Usama Anjum