The current definition of $(XFAIL_TESTS) in tests/Makefile.am
contains useless white-space padding, which is just annoying
when new entries are to be added to that variable (I noticed
this while working recently on branch "pot-primary").

The attached very simple patch removes the useless padding.

OK for maint?

Regards,
  Stefano
From e335d8bc66314034cfd8435572c23e781c6df922 Mon Sep 17 00:00:00 2001
From: Stefano Lattarini <stefano.lattar...@gmail.com>
Date: Wed, 8 Sep 2010 12:28:31 +0200
Subject: [PATCH] Remove useless whitespace padding in XFAIL_TESTS definition.

* tests/Makefile.am (XFAIL_TESTS): Remove whitespace padding.
---
 ChangeLog         |    5 +++++
 tests/Makefile.am |   10 +++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 01ee527..50a47df 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-09-08  Stefano Lattarini  <stefano.lattar...@gmail.com>
+
+	Remove useless whitespace padding in XFAIL_TESTS definition.
+	* tests/Makefile.am (XFAIL_TESTS): Remove whitespace padding.
+
 2010-09-07  Ralf Wildenhues  <ralf.wildenh...@gmx.de>
 
 	parallel-tests: avoid command-line length limit issue.
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 3ecc341..e15d70a 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -16,11 +16,11 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-XFAIL_TESTS =					\
-all.test					\
-auxdir2.test					\
-cond17.test					\
-gcj6.test					\
+XFAIL_TESTS = \
+all.test \
+auxdir2.test \
+cond17.test \
+gcj6.test \
 txinfo5.test
 
 include $(srcdir)/parallel-tests.am
-- 
1.7.1

Reply via email to