2004-12-10 15:08:52 +08:00
|
|
|
# -*- Autotest -*-
|
|
|
|
|
|
|
|
AT_BANNER([Autotest.])
|
|
|
|
|
2005-02-05 15:34:54 +08:00
|
|
|
# Copyright (C) 2004, 2005 Free Software Foundation, Inc.
|
2004-12-10 15:08:52 +08:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
# any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
2005-05-14 15:00:38 +08:00
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
# 02110-1301, USA.
|
2004-12-10 15:08:52 +08:00
|
|
|
|
2004-12-19 22:25:56 +08:00
|
|
|
# AT_CHECK_AT(TITLE, SUITE-CODE, [XFAIL-CONDITION], [STATUS = 0],
|
|
|
|
# [STDOUT := ignore], STDERR)
|
|
|
|
# ---------------------------------------------------------------
|
2004-12-10 15:08:52 +08:00
|
|
|
# Create a new test named TITLE that runs a minimal Autotest test suite,
|
2004-12-19 22:25:56 +08:00
|
|
|
# SUITE-CODE. Call AT_XFAIL_IF with XFAIL-CONDITION. STATUS and STDERR pass
|
|
|
|
# directly to the AT_CHECK that call the minimal test suite. STDOUT is not
|
|
|
|
# used, but it is reserved for future use.
|
2004-12-10 15:08:52 +08:00
|
|
|
m4_define([AT_CHECK_AT],
|
|
|
|
[
|
|
|
|
AT_SETUP([$1])
|
|
|
|
AT_KEYWORDS([autotest])
|
2005-01-01 16:12:12 +08:00
|
|
|
AT_CAPTURE_FILE([micro-suite.log])
|
2004-12-10 15:08:52 +08:00
|
|
|
AT_XFAIL_IF([$3])
|
|
|
|
|
|
|
|
AT_DATA([package.m4],[[
|
|
|
|
m4_define([AT_PACKAGE_NAME], [GNU Nonsense])
|
|
|
|
m4_define([AT_PACKAGE_TARNAME], [nonsense])
|
|
|
|
m4_define([AT_PACKAGE_VERSION], [1.0])
|
|
|
|
m4_define([AT_PACKAGE_STRING], [GNU Nonsense 1.0])
|
|
|
|
m4_define([AT_PACKAGE_BUGREPORT], [bug-autoconf@gnu.org])
|
|
|
|
]])
|
|
|
|
|
|
|
|
AT_DATA([mysuite.at], [$2])
|
|
|
|
|
|
|
|
# Do not use `testsuite' as the name of the small test suite, or the
|
|
|
|
# log file it generates will overwrite the log that the Autoconf test
|
|
|
|
# suite produces for this test case.
|
|
|
|
AT_CHECK_AUTOM4TE([--language=autotest -o micro-suite mysuite.at])
|
2004-12-19 22:25:56 +08:00
|
|
|
AT_CHECK([./micro-suite], m4_default([$4], 0), [ignore], [$6])
|
|
|
|
AT_CHECK([./micro-suite -v -x], m4_default([$4], 0), [ignore], [$6])
|
2004-12-10 15:08:52 +08:00
|
|
|
AT_CLEANUP
|
|
|
|
])
|
|
|
|
|
2004-12-19 22:25:56 +08:00
|
|
|
# AT_CHECK_AT_TEST(TITLE, SUITE-SNIPPET, ...)
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
# Wrapper for AT_CHECK_AT that surrounds SUITE-SNIPPET with a boilerplate
|
|
|
|
# AT_INIT, AT_SETUP, and AT_CLEANUP and passes other arguments verbatim.
|
2004-12-10 15:08:52 +08:00
|
|
|
m4_define([AT_CHECK_AT_TEST],
|
|
|
|
[AT_CHECK_AT([$1],
|
|
|
|
[[
|
|
|
|
AT_INIT([artificial test suite])
|
|
|
|
AT_SETUP([my only test])
|
|
|
|
$2
|
|
|
|
AT_CLEANUP
|
2004-12-19 22:25:56 +08:00
|
|
|
]], m4_shiftn(2, $@))])
|
2004-12-10 15:08:52 +08:00
|
|
|
|
|
|
|
# Here documents for these tests contain forbidden macros.
|
|
|
|
m4_pattern_allow([^AT_])
|
|
|
|
|
2005-02-05 15:34:54 +08:00
|
|
|
|
|
|
|
## ------------------ ##
|
|
|
|
## Empty test suite. ##
|
|
|
|
## ------------------ ##
|
|
|
|
|
|
|
|
# This is not a sensible thing to do, but the user should not get a unhelpful
|
|
|
|
# error message, which is what happens presently.
|
|
|
|
AT_CHECK_AT([Empty test suite],
|
|
|
|
[[AT_INIT([empty test suite])
|
|
|
|
]], [:])
|
|
|
|
|
|
|
|
|
2004-12-19 22:25:56 +08:00
|
|
|
## ----------------------------------------------------- ##
|
|
|
|
## Newlines and command substitutions in test commands. ##
|
|
|
|
## ----------------------------------------------------- ##
|
2004-12-10 15:08:52 +08:00
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([Truth],
|
|
|
|
[AT_CHECK([:], 0, [], [])])
|
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([Fallacy],
|
|
|
|
[AT_CHECK([false], ignore, [], [])])
|
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([Literal multiline command],
|
|
|
|
[AT_CHECK([echo Auto'
|
|
|
|
'conf], 0, [Auto
|
|
|
|
conf
|
|
|
|
], [])])
|
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([Multiline parameter expansion],
|
|
|
|
[FOO='one
|
|
|
|
two'
|
|
|
|
AT_CHECK([echo "$FOO"], 0, [one
|
|
|
|
two
|
|
|
|
], [])])
|
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([Backquote command substition],
|
|
|
|
[AT_CHECK([echo `echo hi`], 0, [hi
|
|
|
|
], [])])
|
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([Multiline backquote command substition],
|
|
|
|
[AT_DATA([myfile],[foo
|
|
|
|
bar
|
|
|
|
])
|
|
|
|
AT_CHECK([echo "`cat myfile`"], 0, [foo
|
|
|
|
bar
|
|
|
|
], [])])
|
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([Parenthetical command substition],
|
|
|
|
[AT_CHECK([echo $(echo hi)], 0, [hi
|
|
|
|
], [])])
|
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([Multiline parenthetical command substition],
|
|
|
|
[AT_DATA([myfile],[foo
|
|
|
|
bar
|
|
|
|
])
|
|
|
|
AT_CHECK([echo "$(cat myfile)"], 0, [foo
|
|
|
|
bar
|
|
|
|
], [])])
|
|
|
|
|
2004-12-19 22:25:56 +08:00
|
|
|
|
|
|
|
## ------------------------- ##
|
|
|
|
## ${...} in test commands. ##
|
|
|
|
## ------------------------- ##
|
|
|
|
|
|
|
|
# If this invalid parameter expansion capsizes the test suite, the entire
|
|
|
|
# AT_SETUP ... AT_CLEANUP subshell will exit, and the commands it runs will
|
|
|
|
# appear to have succeeded. Therefore, we verify a failing test case.
|
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([Invalid brace-enclosed parameter expansion],
|
|
|
|
[AT_CHECK([echo '${=invalid}'], 0, [wrong])], [false], 1, ignore, ignore)
|
|
|
|
|
|
|
|
|
|
|
|
## ---------------------------- ##
|
|
|
|
## M4 macros in test commands. ##
|
|
|
|
## ---------------------------- ##
|
|
|
|
|
|
|
|
# The last paragaph in the comment above _AT_DECIDE_TRACEABLE illustrates why
|
|
|
|
# this test fails.
|
|
|
|
AT_CHECK_AT_TEST([Multiline command from M4 expansion],
|
|
|
|
[m4_define([GNU], ['foo
|
|
|
|
bar'])
|
|
|
|
AT_CHECK([echo GNU], 0, [foo
|
|
|
|
bar
|
|
|
|
], [])], [:])
|
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([Double-M4-quoted command],
|
|
|
|
[m4_define([GNU], ['foo
|
|
|
|
bar'])
|
|
|
|
AT_CHECK([[echo GNU]], 0, [[GNU
|
|
|
|
]], [])])
|
|
|
|
|
|
|
|
|
|
|
|
## -------------------------------------- ##
|
|
|
|
## Backslash-<newline> in test commands. ##
|
|
|
|
## -------------------------------------- ##
|
|
|
|
|
2004-12-14 09:04:25 +08:00
|
|
|
AT_CHECK_AT_TEST([BS-newline in command],
|
|
|
|
[AT_CHECK([echo Auto"\
|
|
|
|
"conf], 0, [Autoconf
|
|
|
|
], [])])
|
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([^BS-newline in command],
|
|
|
|
[AT_CHECK([\
|
|
|
|
echo GNU], 0, [GNU
|
|
|
|
], [])])
|
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([BSx641-newline in command],
|
|
|
|
[AT_CHECK([echo Auto"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
|
|
|
|
"conf], 0, [Auto\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\conf
|
|
|
|
], [])])
|
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([BS-BS-newline in command],
|
|
|
|
[AT_CHECK([echo Auto"\\
|
|
|
|
"conf], 0, [Auto\
|
|
|
|
conf
|
|
|
|
], [])])
|
|
|
|
|
|
|
|
# A `^BS-BS-newline in command' test will run a command named `\'. No, thanks.
|
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([BSx640-newline in command],
|
|
|
|
[AT_CHECK([echo Auto"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
|
|
|
|
"conf], 0, [Auto\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
|
|
|
|
conf
|
|
|
|
], [])])
|
|
|
|
|
|
|
|
# This command has both escaped and unescaped newlines.
|
|
|
|
AT_CHECK_AT_TEST([Newline-CODE-BS-newline in command],
|
|
|
|
[AT_CHECK([echo Auto'
|
|
|
|
'co\
|
|
|
|
nf], 0, [Auto
|
|
|
|
conf
|
|
|
|
], [])])
|
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([Single-quote-BS-newline in command],
|
|
|
|
[AT_CHECK([echo Auto'\
|
|
|
|
'conf], 0, [Auto\
|
|
|
|
conf
|
|
|
|
], [])])
|
|
|
|
|
|
|
|
AT_CHECK_AT_TEST([Single-quote-newline-BS-newline in command],
|
|
|
|
[AT_CHECK([echo Auto'
|
|
|
|
\
|
|
|
|
'conf], 0, [Auto
|
|
|
|
\
|
|
|
|
conf
|
|
|
|
], [])])
|
|
|
|
|
|
|
|
|
2004-12-10 15:08:52 +08:00
|
|
|
## ------------------------------- ##
|
|
|
|
## Funny characters in test names. ##
|
|
|
|
## ------------------------------- ##
|
|
|
|
|
|
|
|
# AT_CHECK_AT_TITLE(TITLE, TITLE-TO-TEST, [XFAIL-CONDITION])
|
|
|
|
# ----------------------------------------------------------
|
|
|
|
# Create a new test named TITLE that runs an Autotest test suite
|
|
|
|
# comprised of a trivial test named TITLE-TO-TEST. XFAIL-CONDITION
|
|
|
|
# passes verbatim to AT_CHECK_AT.
|
|
|
|
m4_define([AT_CHECK_AT_TITLE],
|
|
|
|
[AT_CHECK_AT([$1],
|
|
|
|
[[
|
|
|
|
AT_INIT([artificial test suite])
|
|
|
|
AT_SETUP([$2])
|
|
|
|
AT_CHECK([:])
|
|
|
|
AT_CLEANUP
|
|
|
|
]], [$3])])
|
|
|
|
|
|
|
|
m4_define([AT_CHECK_AT_TITLE_CHAR],
|
|
|
|
[AT_CHECK_AT_TITLE([$1 in a test title], [A $2 in my name], $3)])
|
|
|
|
|
|
|
|
AT_CHECK_AT_TITLE_CHAR([Backquote], [`], [:])
|
|
|
|
AT_CHECK_AT_TITLE_CHAR([Single-quote], ['], [:])
|
|
|
|
AT_CHECK_AT_TITLE_CHAR([Double-quote], ["], [:])
|
|
|
|
AT_CHECK_AT_TITLE_CHAR([Backslash], [\])
|