From nobody Mon Jun 29 11:20:40 2026 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 33311C433F5 for ; Thu, 10 Feb 2022 17:14:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S245098AbiBJROR (ORCPT ); Thu, 10 Feb 2022 12:14:17 -0500 Received: from mxb-00190b01.gslb.pphosted.com ([23.128.96.19]:59728 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S245091AbiBJROM (ORCPT ); Thu, 10 Feb 2022 12:14:12 -0500 Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0C05BCD1; Thu, 10 Feb 2022 09:14:13 -0800 (PST) Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: usama.anjum) with ESMTPSA id 3755F1F46644 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1644513251; bh=7eKe9cr+drEikdGOCEKvZJjS+2opyiB5I/5QBobUyqg=; h=From:To:Cc:Subject:Date:From; b=Hu8sDjEJegZhxyoRsPrtPfobwZ0NYVhVnq6TxIfjDmkmW4PTxXJewDm8rBfrv4zsS Pb34c97Mkhl0YLVrK6Dp9+O6YQ58zqrWIqLWDPBiJIMMBgLPFs2NwKuZLnKXjLixM0 ABIUbH9iR6p1fMgDtt2xIxHxGeJ9/F7qaLoQsD3Wgg+rEUFw8guhdRhF3sDTC93Eui uOyWEhw17vLUhOTCKyEEe8nNcw+nOWgIZrHnCwGYEc6VT+On17trV7bZwIN1DTHVj0 qbFyDfjDsXyo32W7NtYyHLuVT/c0wO2yTZaq/l3evKwWX8ebHPyojAoAvvVgCngp3B AslsTHiY/74pQ== From: Muhammad Usama Anjum To: Eric Biederman , Kees Cook , Shuah Khan , Andrew Morton Cc: Muhammad Usama Anjum , kernel@collabora.com, kernelci@groups.io, "kernelci.org bot" , linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] selftests/exec: Add non-regular to TEST_GEN_PROGS Date: Thu, 10 Feb 2022 22:13:23 +0500 Message-Id: <20220210171323.1304501-1-usama.anjum@collabora.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" non-regular file needs to be compiled and then copied to the output directory. Remove it from TEST_PROGS and add it to TEST_GEN_PROGS. This removes error thrown by rsync when non-regular object isn't found: rsync: [sender] link_stat "/linux/tools/testing/selftests/exec/non-regular"= failed: No such file or directory (2) rsync error: some files/attrs were not transferred (see previous errors) (c= ode 23) at main.c(1333) [sender=3D3.2.3] Fixes: 0f71241a8e32 ("selftests/exec: add file type errno tests") Reported-by: "kernelci.org bot" Signed-off-by: Muhammad Usama Anjum Reviewed-by: Kees Cook Reviewed-by: Shuah Khan --- tools/testing/selftests/exec/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/testing/selftests/exec/Makefile b/tools/testing/selftest= s/exec/Makefile index 551affb437fe1..a89ba6de79870 100644 --- a/tools/testing/selftests/exec/Makefile +++ b/tools/testing/selftests/exec/Makefile @@ -3,8 +3,8 @@ CFLAGS =3D -Wall CFLAGS +=3D -Wno-nonnull CFLAGS +=3D -D_GNU_SOURCE =20 -TEST_PROGS :=3D binfmt_script non-regular -TEST_GEN_PROGS :=3D execveat load_address_4096 load_address_2097152 load_a= ddress_16777216 +TEST_PROGS :=3D binfmt_script +TEST_GEN_PROGS :=3D execveat load_address_4096 load_address_2097152 load_a= ddress_16777216 non-regular TEST_GEN_FILES :=3D execveat.symlink execveat.denatured script subdir # Makefile is a run-time dependency, since it's accessed by the execveat t= est TEST_FILES :=3D Makefile --=20 2.30.2