From 4a7aaccd83a4f9eca17ca936b7c297e01840f587 Mon Sep 17 00:00:00 2001 From: Bryan Donlan Date: Sun, 4 May 2008 01:38:00 -0400 Subject: Rename the test trash directory to contain spaces. In order to help prevent regressions in the future, rename the trash directory for all tests to contain spaces. This patch also corrects two failures that were caused or exposed by this change. Signed-off-by: Bryan Donlan Signed-off-by: Junio C Hamano --- t/.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't/.gitignore') diff --git a/t/.gitignore b/t/.gitignore index fad67c097b..11ffd910c1 100644 --- a/t/.gitignore +++ b/t/.gitignore @@ -1 +1 @@ -trash +/trash directory -- cgit v1.2.3 From f9d800e2074a60a009e7c670e396a379d8c46cc5 Mon Sep 17 00:00:00 2001 From: Brian Gernhardt Date: Sun, 29 Jun 2008 16:47:56 -0400 Subject: Add test results directory to t/.gitignore We don't need test results to be committed if we're fixing a test. Signed-off-by: Brian Gernhardt Signed-off-by: Junio C Hamano --- t/.gitignore | 1 + 1 file changed, 1 insertion(+) (limited to 't/.gitignore') diff --git a/t/.gitignore b/t/.gitignore index 11ffd910c1..b27e280083 100644 --- a/t/.gitignore +++ b/t/.gitignore @@ -1 +1,2 @@ /trash directory +/test-results -- cgit v1.2.3 From 54514f1f144a0e79b6c39d4a865927a18c17ed17 Mon Sep 17 00:00:00 2001 From: Marcus Griep Date: Mon, 18 Aug 2008 12:25:40 -0400 Subject: Update t/.gitignore to ignore all trash directories The current .gitignore only ignores the old "trash directory" and not the new "trash directory.[test]". This ignores both forms. Signed-off-by: Marcus Griep Signed-off-by: Junio C Hamano --- t/.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't/.gitignore') diff --git a/t/.gitignore b/t/.gitignore index b27e280083..7dcbb232cd 100644 --- a/t/.gitignore +++ b/t/.gitignore @@ -1,2 +1,2 @@ -/trash directory +/trash directory* /test-results -- cgit v1.2.3 From 9a3028b987d73e4c85e8db9980720feba6a1b5c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Fri, 23 Jul 2010 22:58:44 +0000 Subject: tests: Ignore the Test::Harness .prove file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We document how to run prove with the --state option in t/README. This produces a .prove YAML file in the current directory. Change the t/ gitignore to ignore it, and clean it up on `make clean'. Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- t/.gitignore | 1 + 1 file changed, 1 insertion(+) (limited to 't/.gitignore') diff --git a/t/.gitignore b/t/.gitignore index 7dcbb232cd..4e731dc1e3 100644 --- a/t/.gitignore +++ b/t/.gitignore @@ -1,2 +1,3 @@ /trash directory* /test-results +/.prove -- cgit v1.2.3