unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] Ignore files generated by regression testing
@ 2014-11-20  3:35 Lee Duhem
  2014-11-20  3:48 ` Glenn Morris
  0 siblings, 1 reply; 8+ messages in thread
From: Lee Duhem @ 2014-11-20  3:35 UTC (permalink / raw)
  To: Emacs Devel

Hi,

This patch adds some patterns in `.gitignore' to ignore files
generated during regression
testing.

OK to commit?

Sincerely,
lee

* .gitignore: Ignore files generated by regression testing.
---
 .gitignore | 3 +++
 ChangeLog  | 4 ++++
 2 files changed, 7 insertions(+)

diff --git a/.gitignore b/.gitignore
index 1fb7d49..235e1fb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -81,3 +81,6 @@ lwlib/deps/
 lwlib/liblw.a
 leim/changed.misc
 leim/changed.tit
+test/automated/*.elc
+test/automated/*.log
+test/automated/**/a.out
diff --git a/ChangeLog b/ChangeLog
index 749c020..4c3c91a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-11-20  Lee Duhem  <lee.duhem@gmail.com>
+
+ * .gitignore: Ignore files generated by regression testing.
+
 2014-11-19  Dani Moncayo  <dmoncayo@gmail.com>

  * build-aux/msys-to-w32: Simplify implementation and docstring;
-- 
1.9.3



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] Ignore files generated by regression testing
  2014-11-20  3:35 [PATCH] Ignore files generated by regression testing Lee Duhem
@ 2014-11-20  3:48 ` Glenn Morris
  2014-11-20  5:28   ` Lee Duhem
  0 siblings, 1 reply; 8+ messages in thread
From: Glenn Morris @ 2014-11-20  3:48 UTC (permalink / raw)
  To: Lee Duhem; +Cc: Emacs Devel


I believe unmerged changes in emacs-24 have already covered much/most of
this.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] Ignore files generated by regression testing
  2014-11-20  3:48 ` Glenn Morris
@ 2014-11-20  5:28   ` Lee Duhem
  2014-11-20 20:44     ` Paul Eggert
  0 siblings, 1 reply; 8+ messages in thread
From: Lee Duhem @ 2014-11-20  5:28 UTC (permalink / raw)
  To: Glenn Morris; +Cc: Emacs Devel

On Thu, Nov 20, 2014 at 11:48 AM, Glenn Morris <rgm@gnu.org> wrote:
>
> I believe unmerged changes in emacs-24 have already covered much/most of
> this.

You are correct. Branch emacs-24 already ignored *.elc and *.log, but
a.out still
missing in its ignore patterns.

Sincerely,
lee



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] Ignore files generated by regression testing
  2014-11-20  5:28   ` Lee Duhem
@ 2014-11-20 20:44     ` Paul Eggert
  2014-11-20 20:56       ` Glenn Morris
  0 siblings, 1 reply; 8+ messages in thread
From: Paul Eggert @ 2014-11-20 20:44 UTC (permalink / raw)
  To: Lee Duhem; +Cc: Emacs Devel

On 11/19/2014 09:28 PM, Lee Duhem wrote:
> a.out still missing

I added it to emacs-24 as commit 54a29f4.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] Ignore files generated by regression testing
  2014-11-20 20:44     ` Paul Eggert
@ 2014-11-20 20:56       ` Glenn Morris
  2014-11-21  8:09         ` Paul Eggert
  0 siblings, 1 reply; 8+ messages in thread
From: Glenn Morris @ 2014-11-20 20:56 UTC (permalink / raw)
  To: Paul Eggert; +Cc: Lee Duhem, Emacs Devel


I wonder why the gitignore file wasn't simply a more literal conversion
of the bzrignore file. Maybe now it is.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] Ignore files generated by regression testing
  2014-11-20 20:56       ` Glenn Morris
@ 2014-11-21  8:09         ` Paul Eggert
  2014-11-21  8:57           ` Eli Zaretskii
  2014-11-21 10:18           ` Andreas Schwab
  0 siblings, 2 replies; 8+ messages in thread
From: Paul Eggert @ 2014-11-21  8:09 UTC (permalink / raw)
  To: Glenn Morris; +Cc: Lee Duhem, Emacs Devel

Glenn Morris wrote:
> I wonder why the gitignore file wasn't simply a more literal conversion
> of the bzrignore file. Maybe now it is.

.gitignore has been around since 1999, I suppose for Git copies of the 
repositories.  Perhaps that contributed to the confusion.

The new .gitignore looks a lot like the old .bzrignore, but it's not the same, 
as I removed stuff that looked to me like it was obsolete (e.g., 
configure.lineno, src/_gdbinit) and refactored for simplicity (e.g., *.log).  I 
made some mistakes in that, which have been repaired (and most likely more 
repairs are needed) but it seemed like a good time for a fresh start.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] Ignore files generated by regression testing
  2014-11-21  8:09         ` Paul Eggert
@ 2014-11-21  8:57           ` Eli Zaretskii
  2014-11-21 10:18           ` Andreas Schwab
  1 sibling, 0 replies; 8+ messages in thread
From: Eli Zaretskii @ 2014-11-21  8:57 UTC (permalink / raw)
  To: Paul Eggert; +Cc: lee.duhem, emacs-devel

> Date: Fri, 21 Nov 2014 00:09:42 -0800
> From: Paul Eggert <eggert@cs.ucla.edu>
> Cc: Lee Duhem <lee.duhem@gmail.com>, Emacs Devel <emacs-devel@gnu.org>
> 
> as I removed stuff that looked to me like it was obsolete (e.g., 
> configure.lineno, src/_gdbinit)

Removing src/_gdbinit was a mistake; I fixed it.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] Ignore files generated by regression testing
  2014-11-21  8:09         ` Paul Eggert
  2014-11-21  8:57           ` Eli Zaretskii
@ 2014-11-21 10:18           ` Andreas Schwab
  1 sibling, 0 replies; 8+ messages in thread
From: Andreas Schwab @ 2014-11-21 10:18 UTC (permalink / raw)
  To: Paul Eggert; +Cc: Lee Duhem, Emacs Devel

Paul Eggert <eggert@cs.ucla.edu> writes:

> .gitignore has been around since 1999, I suppose for Git copies of the
> repositories.  Perhaps that contributed to the confusion.

Git didn't exist in 1999. :-) This is the result of the git conversion
which renamed .cvsignore to .gitignore all through the history.

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-11-21 10:18 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-20  3:35 [PATCH] Ignore files generated by regression testing Lee Duhem
2014-11-20  3:48 ` Glenn Morris
2014-11-20  5:28   ` Lee Duhem
2014-11-20 20:44     ` Paul Eggert
2014-11-20 20:56       ` Glenn Morris
2014-11-21  8:09         ` Paul Eggert
2014-11-21  8:57           ` Eli Zaretskii
2014-11-21 10:18           ` Andreas Schwab

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).