mirror of
git://git.sv.gnu.org/autoconf
synced 2025-01-30 11:01:45 +08:00
5ec791a2d5
* m4sh.m4: this. * tests/m4sugar.m4, tests/shell.m4, tests/torture.m4: Rename as... * tests/m4sugar.at, tests/m4sh.at, tests/torture.at: these. * tests/semantics.m4, tests/base.m4, tests/suite.m4: Rename as... * tests/semantics.at, tests/base.at, tests/suite.at: these. * tests/tools.m4, tests/update.m4, tests/syntax.m4: Rename as... * tests/tools.at, tests/update.at, tests/syntax.at: these. * tests/mktests.sh: Adjust the output file names.
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
#! /bin/sh -*- Autoconf -*-
|
|
# Validation suite for Autoconf
|
|
# Copyright 2000 Free Software Foundation, Inc.
|
|
|
|
# Still many parts of `autoconf' are not exercised by the test suite. A few
|
|
# FIXME's, below, are used to list tests that we would need. Do you feel
|
|
# like contributing new tests? If you do, you may tell your intent to
|
|
# `autoconf@gnu.org', so no two people work at the same thing.
|
|
|
|
AT_INIT(autoconf)
|
|
|
|
cat <<EOF
|
|
Some tests might be ignored if you don't have the software which the
|
|
macros are supposed to test (e.g., a Fortran compiler).
|
|
EOF
|
|
|
|
# Run the tests from the lowest level to the highest level, and from
|
|
# the most selective to the easiest.
|
|
|
|
# M4sugar.
|
|
AT_INCLUDE(m4sugar.at)
|
|
|
|
# M4sh.m4.
|
|
AT_INCLUDE(m4sh.at)
|
|
|
|
# Autoconf base macros.
|
|
AT_INCLUDE(base.at)
|
|
|
|
# The executables.
|
|
AT_INCLUDE(tools.at)
|
|
|
|
# Checking that AC_CHECK_FOO macros work properly.
|
|
AT_INCLUDE(semantics.at)
|
|
|
|
# Stressing config.status.
|
|
AT_INCLUDE(torture.at)
|
|
|
|
# Checking all the AC_DEFUN'd macros.
|
|
AT_INCLUDE(syntax.at)
|
|
|
|
# Checking that updatiing an obsolete macro produces a valid configure.in
|
|
AT_INCLUDE(update.at)
|