autoconf/tests/suite.m4
Akim Demaille 6e09a63ca2 Since GNU M4 now comes with its libm4 (binary), to avoid
ambiguities let's rename `libm4' (M4 code) as `m4sugar':
	Readability And Greater Understanding Stands 4 M4sugar
name coined by Lars J. Aas.
* libm4.m4: Rename as...
* m4sugar.m4: this.
All dependencies adjusted.
2000-10-23 19:13:37 +00:00

37 lines
1005 B
Bash

#!/bin/sh
# Validation suite for Autoconf
# Copyright (C) 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(base.m4)
# The executables.
AT_INCLUDE(tools.m4)
# Checking that AC_CHECK_FOO macros work properly.
AT_INCLUDE(semantics.m4)
# Stressing config.status.
AT_INCLUDE(torture.m4)
# Checking all the AC_DEFUN'd macros.
AT_INCLUDE(syntax.m4)
# Checking that updatiing an obsolete macro produces a valid configure.in
AT_INCLUDE(update.m4)