From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp-bc0d.mail.infomaniak.ch (smtp-bc0d.mail.infomaniak.ch [45.157.188.13]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A4FB42116E4 for ; Fri, 21 Feb 2025 16:11:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.157.188.13 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740154296; cv=none; b=MT2lWMvvqW+YpfnjJB9XvnqTVT8LuqbA0RCISyBBUBUI8R3B25FNYB61T7ATghtl4BFqgHfaxnlxdtaXp0h47rF6FNpWlklQcpqJGmO+qcfuYUCkPC7qqSb7EX69wIYePmV/re7B8p4Jr3ZinSu3E/I0k2V9unAfZqOQGtnxlUk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740154296; c=relaxed/simple; bh=T6dHZGQk0pjWXFu/aSpqEr6oeLaxTvUf4yKCsJYPulw=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=VYUX/gHwsQi4kJkEmw7RyQL1wgWJ5yZVIaC76baJI8T7F2A+pHjJ3gv1C4u/mJ28rdEnuafCOfiHorgipA0EentQ3dNw1xPqqGEeRnO4Wq3926qIH1oat7t0xb6qw+hBiejpsuWXqt2k9GQMAL5AhuRqQXlRQtYEQuRerx/d8bA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=digikod.net; spf=pass smtp.mailfrom=digikod.net; dkim=pass (1024-bit key) header.d=digikod.net header.i=@digikod.net header.b=azSe1hIu; arc=none smtp.client-ip=45.157.188.13 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=digikod.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=digikod.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=digikod.net header.i=@digikod.net header.b="azSe1hIu" Received: from smtp-4-0001.mail.infomaniak.ch (unknown [IPv6:2001:1600:7:10:40ca:feff:fe05:1]) by smtp-4-3000.mail.infomaniak.ch (Postfix) with ESMTPS id 4Yzw9b4wLVzqHw; Fri, 21 Feb 2025 17:11:31 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=digikod.net; s=20191114; t=1740154291; bh=yQcOqV1VkaALUen0yjiE4okMbU08ONwrQynXhHTnX2M=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=azSe1hIuIY7sAaid+jbJN+ejJw4gKzqOzf7ryu/CXumCodUdC7tku/ZAVGQ5ojFGQ Ve7nC+MHkAwS+LTYjHezaUBEUlO4Yrl0bPkzPbIvN8yfnTHijt4Cvt5v+okYoC589P GZ6Q8MDD0EXk4MVplgqasHYGEDrJPHi0EsAPXvRU= Received: from unknown by smtp-4-0001.mail.infomaniak.ch (Postfix) with ESMTPA id 4Yzw9b14lkzj1j; Fri, 21 Feb 2025 17:11:31 +0100 (CET) Date: Fri, 21 Feb 2025 17:11:30 +0100 From: =?utf-8?Q?Micka=C3=ABl_Sala=C3=BCn?= To: Bharadwaj Raju Cc: gnoack@google.com, shuah@kernel.org, skhan@linuxfoundation.org, linux-security-module@vger.kernel.org, linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org, linux-kernel-mentees@lists.linux.dev Subject: Re: [PATCH] selftests/landlock: add binaries to gitignore Message-ID: <20250221.iehieChaoki1@digikod.net> References: <20250210161101.6024-1-bharadwaj.raju777@gmail.com> Precedence: bulk X-Mailing-List: linux-kernel-mentees@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20250210161101.6024-1-bharadwaj.raju777@gmail.com> X-Infomaniak-Routing: alpha On Mon, Feb 10, 2025 at 09:40:57PM +0530, Bharadwaj Raju wrote: > Building the test creates binaries 'wait-pipe' and > 'sandbox-and-launch' which need to be gitignore'd. > > Signed-off-by: Bharadwaj Raju Thanks! > --- > tools/testing/selftests/landlock/.gitignore | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/tools/testing/selftests/landlock/.gitignore b/tools/testing/selftests/landlock/.gitignore > index 470203a7cd73..0566c50dfcad 100644 > --- a/tools/testing/selftests/landlock/.gitignore > +++ b/tools/testing/selftests/landlock/.gitignore > @@ -1,2 +1,4 @@ > /*_test > /true > +/wait-pipe > +/sandbox-and-launch > -- > 2.43.0 > >