]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
tests: Remove tests intended only for the 'next' branch
authorMathieu Lirzin <mthl@gnu.org>
Sun, 25 Feb 2018 15:45:32 +0000 (16:45 +0100)
committerMathieu Lirzin <mthl@gnu.org>
Sun, 25 Feb 2018 15:45:32 +0000 (16:45 +0100)
The commit 199e7a445040270fa5ef67623c56cde40d765199 "Prefer https: URLS"
which is a cherry-pick of b09d945b795ab9deed2bc457289cd5f41c506b50 from
'next' to 'master' has mistakenly copied some tests only present on the
'next' branch.

* t/am-prog-mkdir-p.sh: Delete.
* t/txinfo-no-split.sh: Likewise.

t/am-prog-mkdir-p.sh [deleted file]
t/txinfo-no-split.sh [deleted file]

diff --git a/t/am-prog-mkdir-p.sh b/t/am-prog-mkdir-p.sh
deleted file mode 100644 (file)
index da65915..0000000
+++ /dev/null
@@ -1,90 +0,0 @@
-#! /bin/sh
-# Copyright (C) 2012-2018 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 <https://www.gnu.org/licenses/>.
-
-# Check that the AM_PROG_MKDIR_P macro is deprecated, but still works.
-# We should should also still define $(mkdir_p), for backward
-# compatibility.
-
-. test-init.sh
-
-cat >> configure.ac <<'END'
-AC_CONFIG_FILES([sub/Makefile])
-AM_PROG_MKDIR_P
-AC_OUTPUT
-END
-
-cat > Makefile.am << 'END'
-SUBDIRS = sub
-all-local:
-       $(MKDIR_P) . dir1/a
-       $(mkdir_p) . dir2/b
-       @MKDIR_P@ . dir3/c
-       @mkdir_p@ . dir4/d
-check-local: all
-       test -d dir1/a
-       test -d dir2/b
-       test -d dir3/c
-       test -d dir4/d
-       test -d dir5/e
-       test -d dir5/f
-       test -d dir5/g
-END
-
-mkdir sub
-cat > sub/Makefile.am << 'END'
-# Even '$(mkdir_p)' should continue to work also in subdir makefiles.
-all-local:
-       $(MKDIR_P) .. ../dir5/d
-       $(mkdir_p) .. ../dir5/e
-       @MKDIR_P@ .. ../dir5/f
-       @mkdir_p@ .. ../dir5/g
-END
-
-$ACLOCAL
-$AUTOCONF -Wnone -Wobsolete -Werror 2>stderr && { cat stderr >&2; exit 1; }
-cat stderr >&2
-grep "^configure\\.ac:5:.*'AM_PROG_MKDIR_P'.*deprecated" stderr
-grep "[Aa]utoconf-provided 'AC_PROG_MKDIR_P'.* instead" stderr
-grep "'\$(MKDIR_P)' instead of '\$(mkdir_p)'" stderr
-
-$AUTOCONF -Wno-obsolete
-$AUTOMAKE
-
-./configure
-$MAKE check-local
-$MAKE distcheck
-
-# Now try using AC_PROG_MKDIR_P, but keeping the occurrences of
-# $(mkdir_p) and @mkdir_p@.  This is to check against a regression
-# that hit us with Gettext 0.18.2.
-$MAKE maintainer-clean
-rm -rf autom4te*.cache
-
-sed 's/AM_PROG_MKDIR/AC_PROG_MKDIR/' configure.ac > t
-diff configure.ac t && fatal_ "failed to edit configure.ac"
-mv -f t configure.ac
-
-$ACLOCAL 2>stderr \
-  && $AUTOCONF -Wall -Werror 2>>stderr \
-  && test ! -s stderr \
-  || { cat stderr >&2; exit 1; }
-
-$AUTOMAKE
-./configure
-$MAKE check-local
-$MAKE distcheck
-
-:
diff --git a/t/txinfo-no-split.sh b/t/txinfo-no-split.sh
deleted file mode 100644 (file)
index b36ddd8..0000000
+++ /dev/null
@@ -1,101 +0,0 @@
-#! /bin/sh
-# Copyright (C) 2013-2018 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 <https://www.gnu.org/licenses/>.
-
-# Info split files should not be produced (automake bug#13351).
-
-required=makeinfo
-. test-init.sh
-
-echo AC_OUTPUT >> configure.ac
-
-cat > Makefile.am <<'END'
-MAKEINFO = makeinfo --split-size 10
-info_TEXINFOS = foo.texi
-
-test-split: # A sanity check.
-       $(MAKEINFO) -o split.info foo.texi
-
-check-local:
-       test -f $(srcdir)/foo.info
-       test ! -f $(srcdir)/foo.info-1
-       test "`find $(srcdir) . | grep '\.info'`" = "$(srcdir)/foo.info"
-END
-
-# Systems lacking a working TeX installation cannot run "make dvi".
-if test -z "$TEX"; then
-  warn_ "TeX installation missing, \"make dvi\" will be skipped"
-  echo AUTOMAKE_OPTIONS = -Wno-override >> Makefile.am
-  echo 'dvi:; @echo Tex is missing, do nothing' >> Makefile.am
-fi
-
-cat > foo.texi << 'END'
-\input texinfo
-@setfilename foo.info
-@settitle foo
-@dircategory Dummy utilities
-@direntry
-* Foo: (foo).  Does nothing at all.
-@end direntry
-
-@node Top
-@top Foo
-
-@menu
-* Intro::    Introduction
-* Planets::  List of Planets
-@end menu
-
-@node Intro
-@chapter Introduction
-Will list planets.
-
-@node Planets
-@chapter List of planets
-Hello Mercury.
-Hello Venus
-Hello Earth
-Hello Mars.
-Hello Jupiter.
-Hello Saturn.
-Hello Uran.
-Hello Neptune.
-Hello Pluto.
-@bye
-END
-
-$ACLOCAL
-$AUTOCONF
-$AUTOMAKE -a
-
-./configure
-
-$MAKE test-split
-ls -l # For debugging.
-test -f split.info
-test -f split.info-1
-test -f split.info-2
-rm -f split*
-
-$MAKE
-
-ls -l # For debugging.
-test -f foo.info
-test ! -f foo.info-1
-test "$(find . | $FGREP '.info' | sed 's|^\./||')" = foo.info
-
-$MAKE distcheck
-
-: