From nobody Sat Apr 18 02:49:33 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 6594FC433EF for ; Tue, 19 Jul 2022 10:57:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235742AbiGSK5L (ORCPT ); Tue, 19 Jul 2022 06:57:11 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43460 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233150AbiGSK5F (ORCPT ); Tue, 19 Jul 2022 06:57:05 -0400 Received: from gnuweeb.org (gnuweeb.org [51.81.211.47]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id F40ED28718 for ; Tue, 19 Jul 2022 03:57:03 -0700 (PDT) Received: from syscall.. (unknown [203.29.26.8]) by gnuweeb.org (Postfix) with ESMTPSA id 9E7077E317; Tue, 19 Jul 2022 10:57:01 +0000 (UTC) X-GW-Data: lPqxHiMPbJw1wb7CM9QUryAGzr0yq5atzVDdxTR0iA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1658228223; bh=NIurFmEsDNNT4BQtlqqjgXd6tGsciSmrKgoRlHsZcjs=; h=From:To:Cc:Subject:Date:From; b=eBkgt098i40opFjR4ooF4HlxRi011zA2KBS+RtBM/3Nn3uGmlfSbc/Q2ZQQLYDBlY pDiEu4xnbmgEJr+AsWeLIJorA4mxgzLma3/wJXqVOLpoamKmE4TrTcts6sZhnmhmah mfYPftTDhRymJXkTXT33v/+xgcLekea74Ow6B+n/icMLuWQxNVNbb8XLGXyKX3nHNs Jhp/XUCS3EgjRFDvHtDOTblZvFFbZsKbaFah+bDvDAfvFI0ZyJWKrOgaziAo/ueSXK tpOxzjUC05WxnGksJuxShHbR8LHoqyn5tzwEifcqjSTVn5byR/Eak6bNDcO84IHZHq YogI5FDvYZgLg== From: Fernanda Ma'rouf To: Ammar Faizi , Willy Tarreau Cc: Fernanda Ma'rouf , Linux Kernel Mailing List , GNU/Weeb Mailing List , Fernanda Ma'rouf Subject: [PATCH nolibc v1] selftests/nolibc: Avoid generated files being committed Date: Tue, 19 Jul 2022 17:56:25 +0700 Message-Id: <20220719105625.251669-1-fernandafmr12@gnuweeb.org> X-Mailer: git-send-email 2.34.1 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" After running the nolibc tests, the "git status" is not clean because the generated files are not ignored. Create a `.gitignore` inside the selftests/nolibc directory to ignore them. Cc: Ammar Faizi Cc: Fernanda Ma'rouf Signed-off-by: Fernanda Ma'rouf --- tools/testing/selftests/nolibc/.gitignore | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 tools/testing/selftests/nolibc/.gitignore diff --git a/tools/testing/selftests/nolibc/.gitignore b/tools/testing/self= tests/nolibc/.gitignore new file mode 100644 index 000000000000..4696df589d68 --- /dev/null +++ b/tools/testing/selftests/nolibc/.gitignore @@ -0,0 +1,4 @@ +/initramfs/ +/nolibc-test +/run.out +/sysroot/ base-commit: 1e93ece89dd1c6217b92ef6fc100df9ba202c30c --=20 Fernanda Ma'rouf