From: Stefano Lattarini Date: Sat, 23 Apr 2011 08:48:34 +0000 (+0200) Subject: tests: remove redundant test `mclean.test' X-Git-Tag: v1.11.1b~26^2~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=214bafdb4f7b97e8897cf8668867a2bbcfc804b2;p=thirdparty%2Fautomake.git tests: remove redundant test `mclean.test' * tests/mclean.test: Remove, it's a weak grepping test completely superseded by the much more complete `maintclean.test'. * tests/Makefile.am (TESTS): Update. --- diff --git a/ChangeLog b/ChangeLog index 4417d9b15..a9aa182bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2011-04-23 Stefano Lattarini + + tests: remove redundant test `mclean.test' + * tests/mclean.test: Remove, it's a weak grepping test completely + superseded by the much more complete `maintclean.test'. + * tests/Makefile.am (TESTS): Update. + 2011-04-22 Stefano Lattarini testsuite: more environment sanitization diff --git a/tests/Makefile.am b/tests/Makefile.am index 3fca68e91..b1401e950 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -517,7 +517,6 @@ man2.test \ man3.test \ man4.test \ man5.test \ -mclean.test \ mdate.test \ mdate2.test \ mdate3.test \ diff --git a/tests/Makefile.in b/tests/Makefile.in index 67efb7773..96ef92b17 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -788,7 +788,6 @@ man2.test \ man3.test \ man4.test \ man5.test \ -mclean.test \ mdate.test \ mdate2.test \ mdate3.test \ diff --git a/tests/mclean.test b/tests/mclean.test deleted file mode 100755 index dcbe8184d..000000000 --- a/tests/mclean.test +++ /dev/null @@ -1,31 +0,0 @@ -#! /bin/sh -# Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -# Make sure MAINTAINERCLEANFILES works. -# Report from Paul D. Smith. - -. ./defs || Exit 1 - -cat > Makefile.am << 'END' -MAINTAINERCLEANFILES = foo -END - -: > FOO - -$ACLOCAL || Exit 1 -$AUTOMAKE || Exit 1 - -grep 'rm -f .*MAINTAINERCLEANFILES' Makefile.in