Fix test acoutbs2.test.
authorStefano Lattarini <stefano.lattarini@gmail.com>
Sun, 17 Jan 2010 13:18:39 +0000 (14:18 +0100)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 17 Jan 2010 13:18:39 +0000 (14:18 +0100)
* tests/acoutbs2: In the generated configure.in: add proper calls
to AC_INIT and AM_INIT_AUTOMAKE, and remove explicit definition of
PACKAGE and VERSION. Add a call to aclocal before calling automake.
Updated copyright years.
* tests/Makefile.am (XFAIL_TESTS): Removed acoutbs2.test.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
tests/Makefile.am
tests/Makefile.in
tests/acoutbs2.test

index 1b3ac75..da0968a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2010-01-17  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
+       Fix test acoutbs2.test.
+       * tests/acoutbs2: In the generated configure.in: add proper calls
+       to AC_INIT and AM_INIT_AUTOMAKE, and remove explicit definition of
+       PACKAGE and VERSION. Add a call to aclocal before calling automake.
+       Updated copyright years.
+       * tests/Makefile.am (XFAIL_TESTS): Removed acoutbs2.test.
+
        Add forgotten test scripts to $(TESTS).
        * tests/Makefile.am (TESTS): Added test scripts present on the
        filesystem, which were erroneously left out from $(TESTS):
index f06701a..c160028 100644 (file)
@@ -17,7 +17,6 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 XFAIL_TESTS =                                  \
-acoutbs2.test                                  \
 all.test                                       \
 auxdir2.test                                   \
 cond17.test                                    \
index d8feddf..2954803 100644 (file)
@@ -243,7 +243,6 @@ top_build_prefix = @top_build_prefix@
 top_builddir = @top_builddir@
 top_srcdir = @top_srcdir@
 XFAIL_TESTS = \
-acoutbs2.test                                  \
 all.test                                       \
 auxdir2.test                                   \
 cond17.test                                    \
index 2df24c2..3b56a21 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 1996, 2000, 2002  Free Software Foundation, Inc.
+# Copyright (C) 1996, 2000, 2002, 2010  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
@@ -20,8 +20,8 @@
 . ./defs || Exit 1
 
 cat > configure.in << 'END'
-PACKAGE=nonesuch
-VERSION=nonesuch
+AC_INIT
+AM_INIT_AUTOMAKE(nonesuch, nonesuch)
 AC_ARG_PROGRAM
 AC_PROG_INSTALL
 AC_PROG_MAKE_SET
@@ -34,4 +34,5 @@ END
 : > Makefile.am
 : > zot.in
 
+$ACLOCAL || Exit 1
 $AUTOMAKE