From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from syscall.. (unknown [203.29.26.8]) by gnuweeb.org (Postfix) with ESMTPSA id 8A6587E317; Tue, 19 Jul 2022 10:51:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1658227872; bh=NIurFmEsDNNT4BQtlqqjgXd6tGsciSmrKgoRlHsZcjs=; h=From:To:Cc:Subject:Date:From; b=TjBplcIa6joewLqgCNZiRth+3NgF4dgOR5sjI8Vr4hmSfkFNc0LVl/ZHI+87pVfpU j8p7BxKbaBKZX899AeWhX4YWfT3WP0FY6HrLh5m8HNjx5cgpLZJEU69xuxN4eBvxk5 oV9WQAO0ZXyqY8JeK6jK3TBPVxrBa5hjQ1AbOFjHt4WuOHnVLfAPxnAD/Lxc21PomX 21ubk9C9R7thKmwX/QZlYtd8dWcx2OnMZ98pZnzN5bBR7yfjvHl133mQ+sXyH6IZyG pPyeZm8GBYUVi3A2yemvrzk+OdfmLJpPOkM/wfyHh+Rm5Dw4yesXcxljgTsd5eQCTz 3kz7xhS7pnDew== From: Fernanda Ma'rouf To: Ammar Faizi Cc: GNU/Weeb Mailing List , Fernanda Ma'rouf , Fernanda Ma'rouf Subject: [PATCH nolibc v1] selftests/nolibc: Avoid generated files being committed Date: Tue, 19 Jul 2022 17:50:38 +0700 Message-Id: <20220719105038.250887-1-fernandafmr12@gnuweeb.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: 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/selftests/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 -- Fernanda Ma'rouf