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 A3FCCC433EF for ; Sat, 21 May 2022 13:38:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346026AbiEUNik (ORCPT ); Sat, 21 May 2022 09:38:40 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56820 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S243119AbiEUNii (ORCPT ); Sat, 21 May 2022 09:38:38 -0400 Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4C06C6EC65; Sat, 21 May 2022 06:38:36 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: usama.anjum) with ESMTPSA id 54DC41F45EEE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1653140314; bh=j9f2V5Zxh9yuwQmxlQWv50QaI2FGhN8Kn1Vpx9SxtRA=; h=Date:Cc:Subject:To:References:From:In-Reply-To:From; b=MYYwBif3PEkSuh/MdFn1sRqZrgGIxJtsd8CYrNrZqpLbvt//UTuVpyzysbtYXB89I uQKcsdODyzM6PRM/EovYCnVF1BKQZBcUb1i5L/cj9PbpD2Ojk0D48UkZ3BPPadx7pG mjeZOlbNs9I5j5W0zoKMMbr6eOFlCYnRK3DUoZY1G8X584fxiF30EqZKaeYP5vjxOk 2tjwVUrVwAndiv9itlXqKZEpT16slMJelVSgcWN65FSnjEFVDi47sLnehGtVAqBFtn xj/gWPFCmRH0/lryQzysLUc/2sNXD85+R3h4PK+DIj970WmEbPOFVG6qz/FunWUxbC cU2LNTI4aW/ng== Message-ID: <1e2931e1-afc3-14bf-d72a-a267574c2b97@collabora.com> Date: Sat, 21 May 2022 18:38:26 +0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.8.0 Cc: usama.anjum@collabora.com, Colin Walters , Peter Jones , Alexander Larsson , Alberto Ruiz , Christian Kellner , Lennart Poettering , Chung-Chiang Cheng , OGAWA Hirofumi , Shuah Khan , linux-kselftest@vger.kernel.org Subject: Re: [RFC PATCH 3/3] selftests/filesystems: add a vfat RENAME_EXCHANGE test Content-Language: en-US To: Javier Martinez Canillas , linux-kernel@vger.kernel.org References: <20220519092343.2776414-1-javierm@redhat.com> <20220519092343.2776414-4-javierm@redhat.com> From: Muhammad Usama Anjum In-Reply-To: <20220519092343.2776414-4-javierm@redhat.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 5/19/22 2:23 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 Create a .gitignore file and add rename_exchange to a .gitignore like other tests. > +CFLAGS += -O2 -g -Wall -I../../../../usr/include/ > + Include $(KHDR_INCLUDES) instead of "-I../../../../usr/include/" here. > +include ../../lib.mk -- Muhammad Usama Anjum