summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Duret-Lutz <adl@gnu.org>2003-07-04 21:22:26 +0000
committerAlexandre Duret-Lutz <adl@gnu.org>2003-07-04 21:22:26 +0000
commite45cba607d84bf97f51aa0ebff7b123b0d9e9979 (patch)
treef8ed1bafab670a49fa5c2a26d8b7941a5a768f3f
parent0bce828bb031865c8cc8960a7efe2dbe3c2769d7 (diff)
downloadautomake-e45cba607d84bf97f51aa0ebff7b123b0d9e9979.tar.gz
* tests/stamph.test, tests/package.test: Delete.
* tests/Makefile.am (TESTS): Remove them, and do not list aclocal.test and aclocal2.test twice.
-rw-r--r--ChangeLog4
-rw-r--r--tests/Makefile.am4
-rw-r--r--tests/Makefile.in4
-rwxr-xr-xtests/package.test35
-rwxr-xr-xtests/stamph.test33
5 files changed, 4 insertions, 76 deletions
diff --git a/ChangeLog b/ChangeLog
index 49df2d184..d70df208d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2003-07-04 Alexandre Duret-Lutz <adl@gnu.org>
+ * tests/stamph.test, tests/package.test: Delete.
+ * tests/Makefile.am (TESTS): Remove them, and do not list
+ aclocal.test and aclocal2.test twice.
+
* lib/depcomp (icc): Update to grok ICC 7.1's output.
* m4/depend.m4 (_AM_DEPENDENCIES): Check dependency generation
in a subdirectory, and with many dependencies. This
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 5559e9720..31e20ecc3 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -7,8 +7,6 @@ acinclude.test \
aclibobj.test \
aclocal.test \
aclocal2.test \
-aclocal.test \
-aclocal2.test \
aclocal3.test \
aclocal4.test \
acoutnoq.test \
@@ -302,7 +300,6 @@ output2.test \
output3.test \
output4.test \
output5.test \
-package.test \
parse.test \
percent.test \
percent2.test \
@@ -371,7 +368,6 @@ spell.test \
spell2.test \
spell3.test \
spelling.test \
-stamph.test \
stamph2.test \
stdlib.test \
strip.test \
diff --git a/tests/Makefile.in b/tests/Makefile.in
index 5b102bac5..a5465dca5 100644
--- a/tests/Makefile.in
+++ b/tests/Makefile.in
@@ -101,8 +101,6 @@ acinclude.test \
aclibobj.test \
aclocal.test \
aclocal2.test \
-aclocal.test \
-aclocal2.test \
aclocal3.test \
aclocal4.test \
acoutnoq.test \
@@ -396,7 +394,6 @@ output2.test \
output3.test \
output4.test \
output5.test \
-package.test \
parse.test \
percent.test \
percent2.test \
@@ -465,7 +462,6 @@ spell.test \
spell2.test \
spell3.test \
spelling.test \
-stamph.test \
stamph2.test \
stdlib.test \
strip.test \
diff --git a/tests/package.test b/tests/package.test
deleted file mode 100755
index a375c1a72..000000000
--- a/tests/package.test
+++ /dev/null
@@ -1,35 +0,0 @@
-#! /bin/sh
-# Copyright (C) 1996, 1998, 2000, 2001, 2002 Free Software Foundation, Inc.
-#
-# This file is part of GNU Automake.
-#
-# GNU Automake 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.
-#
-# GNU Automake 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 autoconf; see the file COPYING. If not, write to
-# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA 02111-1307, USA.
-
-# Test to ensure PACKAGE required.
-
-. ./defs || exit 1
-
-cat > configure.in << 'END'
-AC_OUTPUT(Makefile)
-END
-
-cat > Makefile.am << 'END'
-pkgdata_DATA =
-END
-
-$ACLOCAL || exit 1
-$AUTOMAKE && exit 1
-exit 0
diff --git a/tests/stamph.test b/tests/stamph.test
deleted file mode 100755
index 15e28a75a..000000000
--- a/tests/stamph.test
+++ /dev/null
@@ -1,33 +0,0 @@
-#! /bin/sh
-# Copyright (C) 1997, 1998, 2000, 2001, 2002 Free Software Foundation, Inc.
-#
-# This file is part of GNU Automake.
-#
-# GNU Automake 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.
-#
-# GNU Automake 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 autoconf; see the file COPYING. If not, write to
-# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA 02111-1307, USA.
-
-# Error if stamp-h appears in AC_OUTPUT line.
-
-. ./defs || exit 1
-
-cat > configure.in << 'END'
-AC_OUTPUT(Makefile stamp-h)
-END
-
-: > Makefile.am
-
-$ACLOCAL || exit 1
-$AUTOMAKE && exit 1
-exit 0