summaryrefslogtreecommitdiff
path: root/tests/aclocal-path-precedence.test
Commit message (Collapse)AuthorAgeFilesLines
* tests: quote 'like this', not `like this', as per GCS recommendationStefano Lattarini2012-02-231-4/+4
| | | | | | | | | | | | | | | | | | | | | | | This patch converts the automake testsuite and related files, to the use of new quoting format 'like this' or "like this" rather than `like this'. This is done for consistency with the new recommendations in the GNU Coding Standards, and, well, because I've come to actually prefer the '...' and "..." quoting formats over the `...' one. * tests/README: Update quoting format throughout. Remove some "excessive" use of quoting, and throw in minor rewording where appropriate. * tests/Makefile.am: Likewise, for comments. * tests/CheckListOfTests.am: Likewise. * tests/defs-static.in: Likewise. * tests/defs: Likewise. * tests/trivial-test-driver: Likewise. * Many tests/*.tap, tests/*.test and tests/*.sh files: Likewise, and for the diagnostic and informational messages as well. * tests/gen-testsuite-part: Likewise, and for the generated tests as well.
* tests: prefer 'configure.ac' over 'configure.in'Stefano Lattarini2012-02-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With this change, our testsuite now uses 'configure.ac' as the name for the typical autoconf input, instead of the obsolescent 'configure.in' (which has been deprecated for several years, at least since autoconf 2.50). Most of the test cases changed by this commit have been automatically modified with this sed command (using GNU sed): sed -i 's/\<configure\(\\\?\)\.in\>/configure\1.ac/g' * syntax-checks.mk (sc_tests_no_configure_in): New syntax check. (syntax_check_rules): Add it. * tests/defs: Create stub for autoconf input in 'configure.ac', not in 'configure.in'. Adjust comments. ($AUTOCONF, $AUTOHEADER, $AUTORECONF): Remove workaround for the infamous debian autoconf wrapper: we don't need such workaround anymore now that we name our autoconf input as 'configure.ac'. For more information, see commit v1.11-564-g63da492 "test defs: hack to support autoconf-wrapper programs" of 16-12-2011. * tests/README: Use 'configure.ac', not 'configure.in'. * Many many tests: Likewise. * tests/backcompat3.test: Adjust to avoid spurious failures. * tests/backcompat5.test: Likewise. * tests/missing6.test: Likewise. * tests/backcompat6.test: Likewise, and extend a bit since we are at it.
* maint: run "make update-copyright"Stefano Lattarini2012-02-161-1/+1
|
* tests: remove redundant settings of `errexit' shell flagStefano Lattarini2011-10-211-2/+0
| | | | | | | | | | | | | | | | | | | | * tests/aclocal-path-install-serial.test: Do not set the `errexit' shell flag, as it is already set by `tests/defs'. * tests/aclocal-path-install.test: Likewise. * tests/aclocal-path-nonexistent.test: Likewise. * tests/aclocal-path-precedence.test: Likewise. * tests/aclocal-path.test: Likewise. * tests/dist-auxfile-2.test: Likewise. * tests/dist-auxfile.test: Likewise. * tests/distcheck-pr9579.test: Likewise. * tests/javadir-undefined.test: Likewise. * tests/subpkg-yacc.test: Likewise. * tests/test-extensions-cond.test: Likewise. * tests/test-extensions.test: Likewise. * tests/uninstall-fail.test: Likewise. * tests/uninstall-pr9578.test: Likewise. * tests/distcheck-override-infodir.test: Likewise. Also, fix typo in heading comments since we are at it.
* Merge branch 'test-protocols' into testsuite-workStefano Lattarini2011-09-281-1/+1
|\ | | | | | | | | | | * test-protocols: uninstall: "make uninstall" before "make install" works tests: fix tests on aclocal search path precedences
| * tests: fix tests on aclocal search path precedencesStefano Lattarini2011-09-221-1/+1
| | | | | | | | | | * tests/aclocal-path-precedence.test: Call `$ACLOCAL' with the proper overridden system acdir.
* | tests: fix spurious failure in test on ACLOCAL_PATH precedencesStefano Lattarini2011-09-261-2/+2
|/ | | | | | | * tests/aclocal-path-precedence.test: Do not merely append to `configure.in', it should be created from scratch. Pass package name and version to AC_INIT as arguments, otherwise autoconf will complain.
* aclocal: handle ACLOCAL_PATH environment variablePaolo Bonzini2011-09-201-0/+93
* aclocal.in (parse_ACLOCAL_PATH): New function, parse ACLOCAL_PATH as a colon-separated list of directories to be included in the search path. * doc/automake.texi (Macro Search Path): Document new behavior and the precedence rules for various elements of the search path. * tests/aclocal-path.test: New test. * tests/aclocal-path-install.test: Likewise. * tests/aclocal-path-install-serial.test: Likewise. * tests/aclocal-path-precedence.test: Likewise. * tests/aclocal-path-nonexistent.test: Likewise. * tests/Makefile.am (TESTS): Add them. * NEWS: Update. * tests/distcheck-missing-m4.test: Extend by also checking interactions with ACLOCAL_PATH. * tests/distcheck-outdated-m4.test: Likewise, and fix a couple of botched comments since we are at it.