mirror of
git://git.sv.gnu.org/autoconf
synced 2024-11-21 01:01:48 +08:00
b54d44e0c3
* autoheader.m4 (autoheader::AH_DEFUN): New macro. * tests/tools.m4: New file, in charge of testing the scripts. All the dependencies adapted. * tests/actest.m4 (autoheader::AC_TATOOINE): New macro, used while testing autoheader. * tests/atspecific.m4: Create config.hin instead of config.h.in.
24 lines
710 B
Bash
24 lines
710 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
|
|
|
|
dnl Run the tests from the most selective to the easiest.
|
|
|
|
AT_INCLUDE(torture.m4)
|
|
AT_INCLUDE(semantics.m4)
|
|
AT_INCLUDE(syntax.m4)
|
|
AT_INCLUDE(tools.m4)
|
|
AT_INCLUDE(base.m4)
|