]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
* tests/dirname.test: Delete. We don't define _AM_DIRNAME anymore.
authorAlexandre Duret-Lutz <adl@gnu.org>
Fri, 19 Jul 2002 20:23:38 +0000 (20:23 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Fri, 19 Jul 2002 20:23:38 +0000 (20:23 +0000)
* tests/Makefile.am (TESTS): Remove dirname.test.

ChangeLog
tests/Makefile.am
tests/Makefile.in
tests/dirname.test [deleted file]

index ddd5eed5a62ea96165b0785f08fc99092f386277..83b3f855c71a7e65be86aea1ebd779557afcc81b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2002-07-19  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
+       * tests/dirname.test: Delete.  We don't define _AM_DIRNAME anymore.
+       * tests/Makefile.am (TESTS): Remove dirname.test.
+
        * m4/init.m4: Require Autoconf 2.53b.
        * m4/header.m4 (AM_CONFIG_HEADER): Redefine using AU_DEFUN.
        * m4/ccstdc.m4 (fp_PROG_CC_STDC): New AU_DEFUN.
index d4bade7a3123d63cdb6b77902ee964b0f25a72b3..dbed2d197159c42183394d657b2a85dd630ae8a0 100644 (file)
@@ -132,7 +132,6 @@ depend3.test \
 depend4.test \
 destdir.test \
 dirforbid.test \
-dirname.test \
 discover.test \
 distcommon.test \
 distcommon2.test \
index 108732fdf09b9d6edbded385070751c5c42e0475..1447a9311d42e2f754639468af66145d6ff3ae67 100644 (file)
@@ -52,6 +52,7 @@ INSTALL_SCRIPT = @INSTALL_SCRIPT@
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 LIBS = @LIBS@
 LN = @LN@
+LTLIBOBJS = @LTLIBOBJS@
 MAKEINFO = @MAKEINFO@
 PACKAGE = @PACKAGE@
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -219,7 +220,6 @@ depend3.test \
 depend4.test \
 destdir.test \
 dirforbid.test \
-dirname.test \
 discover.test \
 distcommon.test \
 distcommon2.test \
diff --git a/tests/dirname.test b/tests/dirname.test
deleted file mode 100755 (executable)
index 40c4457..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-#! /bin/sh
-
-# Test the operation of the _AM_DIRNAME macro from m4/header.m4
-
-. $srcdir/defs || exit 1
-
-cat > configure.in << 'END'
-AC_INIT
-echo "1 /a/path/to/a/file      = _AM_DIRNAME([/a/path/to/a/file])"
-echo "2 another/path/to/a/file = _AM_DIRNAME([another/path/to/a/file])"
-echo "3 file                   = _AM_DIRNAME([file])"
-echo "4 //                     = _AM_DIRNAME([//])"
-echo "5 //file                 = _AM_DIRNAME([//file])"
-echo "6 /                      = _AM_DIRNAME([/])"
-echo "7 /file                  = _AM_DIRNAME([/file])"
-END
-
-$ACLOCAL || exit 1
-# fail gracefully if autoconf didn't support support our regexps anyhow
-$AUTOCONF || exit 77
-
-# Use --quiet otherwise unwelcome messages like "loading site script"
-# would cause a failure.
-./configure --quiet >got || exit 1
-
-cat >wanted <<EOF
-1 /a/path/to/a/file      = /a/path/to/a
-2 another/path/to/a/file = another/path/to/a
-3 file                   = .
-4 //                     = //
-5 //file                 = //
-6 /                      = /
-7 /file                  = /
-EOF
-
-diff wanted got || exit 1
-
-exit 0