From patchwork Mon Jun 27 18:27:21 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Brian Norris X-Patchwork-Id: 102252 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:4978:20e::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 5BE4CB6F68 for ; Tue, 28 Jun 2011 04:29:35 +1000 (EST) Received: from canuck.infradead.org ([2001:4978:20e::1]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1QbGYg-0007qw-In; Mon, 27 Jun 2011 18:29:19 +0000 Received: from localhost ([127.0.0.1] helo=canuck.infradead.org) by canuck.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1QbGYg-0003Qw-5m; Mon, 27 Jun 2011 18:29:18 +0000 Received: from mms2.broadcom.com ([216.31.210.18]) by canuck.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1QbGY6-0003IJ-TX for linux-mtd@lists.infradead.org; Mon, 27 Jun 2011 18:28:47 +0000 Received: from [10.9.200.131] by mms2.broadcom.com with ESMTP (Broadcom SMTP Relay (Email Firewall v6.3.2)); Mon, 27 Jun 2011 11:32:58 -0700 X-Server-Uuid: D3C04415-6FA8-4F2C-93C1-920E106A2031 Received: from mail-irva-13.broadcom.com (10.11.16.103) by IRVEXCHHUB01.corp.ad.broadcom.com (10.9.200.131) with Microsoft SMTP Server id 8.2.247.2; Mon, 27 Jun 2011 11:28:26 -0700 Received: from localhost.localdomain (ld-irv-0074 [10.12.160.50]) by mail-irva-13.broadcom.com (Postfix) with ESMTP id 6E90374D03; Mon, 27 Jun 2011 11:28:26 -0700 (PDT) From: "Brian Norris" To: "Artem Bityutskiy" Subject: [PATCH 04/10] mtd-utils: update .gitignore files Date: Mon, 27 Jun 2011 11:27:21 -0700 Message-ID: <1309199247-19248-5-git-send-email-computersforpeace@gmail.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1309199247-19248-1-git-send-email-computersforpeace@gmail.com> References: <1309199247-19248-1-git-send-email-computersforpeace@gmail.com> MIME-Version: 1.0 X-WSS-ID: 6216135062O14631967-01-01 X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20110627_142843_332346_880D9C29 X-CRM114-Status: GOOD ( 12.69 ) X-Spam-Score: 1.2 (+) X-Spam-Report: SpamAssassin version 3.3.1 on canuck.infradead.org summary: Content analysis details: (1.2 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (computersforpeace[at]gmail.com) 0.0 DKIM_ADSP_CUSTOM_MED No valid author signature, adsp_override is CUSTOM_MED 1.2 NML_ADSP_CUSTOM_MED ADSP custom_med hit, and not from a mailing list Cc: Brian Norris , linux-mtd@lists.infradead.org, Mike Frysinger X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-mtd-bounces@lists.infradead.org Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org First, the top-level Makefile should not tell git to ignore sub-level .gitignore files. Second, add simple .gitignores to ignore the executables generated under the various `tests' subdirectories. Signed-off-by: Brian Norris --- .gitignore | 5 +++++ tests/checkfs/.gitignore | 2 ++ tests/fs-tests/integrity/.gitignore | 1 + tests/fs-tests/simple/.gitignore | 5 +++++ tests/fs-tests/stress/atoms/.gitignore | 10 ++++++++++ tests/fs-tests/utils/.gitignore | 2 ++ tests/jittertest/.gitignore | 2 ++ 7 files changed, 27 insertions(+), 0 deletions(-) create mode 100644 tests/checkfs/.gitignore create mode 100644 tests/fs-tests/integrity/.gitignore create mode 100644 tests/fs-tests/simple/.gitignore create mode 100644 tests/fs-tests/stress/atoms/.gitignore create mode 100644 tests/fs-tests/utils/.gitignore create mode 100644 tests/jittertest/.gitignore diff --git a/.gitignore b/.gitignore index 86aee63..3a56d0d 100644 --- a/.gitignore +++ b/.gitignore @@ -48,6 +48,11 @@ # # +# git files that we don't want to ignore even it they are dot-files +# +!.gitignore + +# # Generated include files # /include/version.h diff --git a/tests/checkfs/.gitignore b/tests/checkfs/.gitignore new file mode 100644 index 0000000..52e7b5d --- /dev/null +++ b/tests/checkfs/.gitignore @@ -0,0 +1,2 @@ +/checkfs +/makefiles diff --git a/tests/fs-tests/integrity/.gitignore b/tests/fs-tests/integrity/.gitignore new file mode 100644 index 0000000..2ea8e69 --- /dev/null +++ b/tests/fs-tests/integrity/.gitignore @@ -0,0 +1 @@ +/integck diff --git a/tests/fs-tests/simple/.gitignore b/tests/fs-tests/simple/.gitignore new file mode 100644 index 0000000..f3ccde4 --- /dev/null +++ b/tests/fs-tests/simple/.gitignore @@ -0,0 +1,5 @@ +/ftrunc +/orph +/perf +/test_1 +/test_2 diff --git a/tests/fs-tests/stress/atoms/.gitignore b/tests/fs-tests/stress/atoms/.gitignore new file mode 100644 index 0000000..67dede0 --- /dev/null +++ b/tests/fs-tests/stress/atoms/.gitignore @@ -0,0 +1,10 @@ +/fwrite00 +/gcd_hupper +/pdfrun +/rmdir00 +/rndrm00 +/rndrm99 +/rndwrite00 +/stress_1 +/stress_2 +/stress_3 diff --git a/tests/fs-tests/utils/.gitignore b/tests/fs-tests/utils/.gitignore new file mode 100644 index 0000000..f3cdf5f --- /dev/null +++ b/tests/fs-tests/utils/.gitignore @@ -0,0 +1,2 @@ +/free_space +/fstest_monitor diff --git a/tests/jittertest/.gitignore b/tests/jittertest/.gitignore new file mode 100644 index 0000000..05d4e9e --- /dev/null +++ b/tests/jittertest/.gitignore @@ -0,0 +1,2 @@ +/JitterTest +/plotJittervsFill