From: Stefano Lattarini Date: Fri, 26 Oct 2012 12:16:05 +0000 (+0200) Subject: tests: remove an obsolescent grepping check X-Git-Tag: v1.12.5~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=042a2279fe1d030b0deb559c6318213e3cea1f6f;p=thirdparty%2Fautomake.git tests: remove an obsolescent grepping check * t/remake3.sh: This one, superseded by ... * t/remake3a.sh: ... this semantic test, whose comments have been djusted accordingly. * t/list-of-tests.mk: Adjust. Signed-off-by: Stefano Lattarini --- diff --git a/t/list-of-tests.mk b/t/list-of-tests.mk index 722ccda88..cf36fb659 100644 --- a/t/list-of-tests.mk +++ b/t/list-of-tests.mk @@ -903,7 +903,6 @@ t/python-pr10995.sh \ t/recurs.sh \ t/recurs2.sh \ t/relativize.tap \ -t/remake3.sh \ t/remake3a.sh \ t/remake4.sh \ t/remake5.sh \ diff --git a/t/remake3.sh b/t/remake3.sh deleted file mode 100755 index 712badc73..000000000 --- a/t/remake3.sh +++ /dev/null @@ -1,38 +0,0 @@ -#! /bin/sh -# Copyright (C) 2001-2012 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 . - -# Weak "grepping" test trying to ensure that remake rules work for files -# in a subdirectory even when there is no Makefile for that subdirectory. -# See also sister functional test 'remake3a.sh'. - -. ./defs || exit 1 - -cat >> configure.ac << 'END' -AC_CONFIG_FILES([sub/foo]) -AC_OUTPUT -END - -: > Makefile.am - -mkdir sub -: > sub/foo.in - -$ACLOCAL -$AUTOMAKE - -grep '^sub/foo' Makefile.in - -: diff --git a/t/remake3a.sh b/t/remake3a.sh index 0f2407a13..5291ddda6 100755 --- a/t/remake3a.sh +++ b/t/remake3a.sh @@ -16,7 +16,6 @@ # Ensure that remake rules work for files in a subdirectory even when # there is no Makefile for that subdirectory. -# See also sister "grepping" test 'remake3.sh'. . ./defs || exit 1