2000-01-29 20:18:40 +08:00
|
|
|
#!/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)
|
|
|
|
|
2000-02-07 22:53:49 +08:00
|
|
|
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
|
|
|
|
|
2000-02-08 01:15:51 +08:00
|
|
|
dnl Run the tests from the most selective to the easiest.
|
2000-02-07 19:54:29 +08:00
|
|
|
|
2000-02-08 01:15:51 +08:00
|
|
|
AT_INCLUDE(torture.m4)
|
2000-02-07 19:54:29 +08:00
|
|
|
AT_INCLUDE(semantics.m4)
|
2000-01-29 20:18:40 +08:00
|
|
|
AT_INCLUDE(syntax.m4)
|
2000-02-08 21:54:48 +08:00
|
|
|
AT_INCLUDE(tools.m4)
|
|
|
|
AT_INCLUDE(base.m4)
|