5 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2, or (at your option)
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23 ## ---------------- ##
25 ## ---------------- ##
29 # We cannot unset LINENO with Zsh, yet this test case relies on
30 # unsetting LINENO to compare its result when (i) LINENO is supported
31 # and when (ii) it is not.
32 # So just skip if the shell is ZSH.
33 AT_CHECK([test -n "${ZSH_VERSION+set}" && exit 77], ignore)
35 # AT_DATA_LINENO(FILE-NAME,
36 # UNSET-LINENO = true | false, COUNTER, COUNTER-RE)
37 # ----------------------------------------------------------------
38 # Produce the FILE-NAME M4sh script which uses the COUNTER LINENO or
39 # _oline_, which we can recognized via COUNTER-RE. Unset LINENO is
42 # Use COUNTER, COUNTER-RE = [__LINENO__], [LINENO]
43 # or = [__OLINE__], [_oline__]
45 # instead of the obvious $LINENO and __oline__, because they would
46 # be replaced in the test suite itself, even before creating these
47 # scripts. For the same reason, grep for LINENO and _oline__ (sic).
49 # UNSET-LINENO is a shell condition to make sure the scripts have the
50 # same number of lines in the output, so that their outputs be identical.
51 m4_define([AT_DATA_LINENO],
55 AS@&t@_UNSET([LINENO])
59 grep 'Line: .*$4' $[0] >/dev/null ||
60 AS@&t@_ERROR([cannot find original script])
63 # If occurrences of $LINENO or __oline__ were wanted, create them.
64 sed 's/__LINENO__/$''LINENO/g;s/__OLINE__/__''oline__/g' $1.tas >$1.as
65 AT_CHECK([autom4te -l m4sh $1.as -o $1])
68 # `_oline_', once processed and ran, produces our reference.
69 # We check that we find ourselves by looking at a string which is
70 # available only in the original script: `_oline_'.
71 AT_DATA_LINENO([reference], [false], [__OLINE__], [_oline__])
72 AT_CHECK([./reference], 0, [stdout])
77 # Now using a maybe-functioning LINENO, with different call conventions.
78 # Be sure to be out of the PATH.
79 AT_CHECK([mkdir test || exit 77])
81 AT_DATA_LINENO([test/test-1], [false], [__LINENO__], [LINENO])
82 AT_CHECK([./test/test-1], 0, [expout])
83 AT_CHECK([(PATH=test$PATH_SEPARATOR$PATH; export PATH; exec test-1)],
85 AT_CHECK([sh ./test/test-1], 0, [expout])
87 # Now using a disabled LINENO, with different call conventions.
88 AT_DATA_LINENO([test/test-2], [true], [__LINENO__], [LINENO])
89 AT_CHECK([./test/test-2], 0, [expout])
90 AT_CHECK([(PATH=test$PATH_SEPARATOR$PATH; export PATH; exec test-2)],
92 AT_CHECK([sh ./test/test-2], 0, [expout])
103 AT_SETUP([AS@&t@_DIRNAME])
105 AT_DATA_M4SH([script.as],
108 # The EXPR variant is allowed to fail if `expr' was considered as too
109 # weak for us, in which case `as_expr=false'.
110 m4_define([DIRNAME_TEST],
111 [dir=`AS_DIRNAME([$1])`
112 test "$dir" = "$2" || (test -n "$3" && test "$dir" = "$3") ||
113 echo "dirname($1) = $dir instead of $2" >&2
115 if test "$as_expr" != false; then
116 dir=`_AS_DIRNAME_EXPR([$1])`
117 test "$dir" = "$2" || (test -n "$3" && test "$dir" = "$3") ||
118 echo "dirname_expr($1) = $dir instead of $2" >&2
121 dir=`_AS_DIRNAME_SED([$1])`
122 test "$dir" = "$2" || (test -n "$3" && test "$dir" = "$3") ||
123 echo "dirname_sed($1) = $dir instead of $2" >&2])
125 DIRNAME_TEST([/], [/])
126 DIRNAME_TEST([//], [//], [/])
127 DIRNAME_TEST([///], [/])
128 DIRNAME_TEST([//1], [//], [/])
129 DIRNAME_TEST([/1], [/])
130 DIRNAME_TEST([./1], [.])
131 DIRNAME_TEST([../../2], [../..])
132 DIRNAME_TEST([//1/], [//], [/])
133 DIRNAME_TEST([/1/], [/])
134 DIRNAME_TEST([./1/], [.])
135 DIRNAME_TEST([../../2], [../..])
136 DIRNAME_TEST([//1/3], [//1])
137 DIRNAME_TEST([/1/3], [/1])
138 DIRNAME_TEST([./1/3], [./1])
139 DIRNAME_TEST([../../2/3], [../../2])
140 DIRNAME_TEST([//1/3///], [//1])
141 DIRNAME_TEST([/1/3///], [/1])
142 DIRNAME_TEST([./1/3///], [./1])
143 DIRNAME_TEST([../../2/3///], [../../2])
144 DIRNAME_TEST([//1//3/], [//1])
145 DIRNAME_TEST([/1//3/], [/1])
146 DIRNAME_TEST([./1//3/], [./1])
147 DIRNAME_TEST([../../2//3/], [../../2])
163 AT_SETUP([AS@&t@_ECHO and AS@&t@_ECHO_N])
165 AT_DATA_M4SH([script.as],
168 m4_define([ECHO_TEST],
169 [echo=`AS_ECHO(['$1'])`
170 test "X$echo" = 'X$1' ||
171 echo "AS@&t@_ECHO('"'$1'"') outputs '$echo'" >&2
173 echo=`AS_ECHO_N(['$1'])`
174 test "X$echo" = 'X$1' ||
175 echo "AS@&t@_ECHO_N('"'$1'"') outputs '$echo'" >&2])
179 ECHO_TEST([---...---])
188 ECHO_TEST([\a\b\c\f\n\r\t\v\"\])
211 AT_SETUP([AS@&t@_BASENAME])
213 AT_DATA_M4SH([script.as],
216 m4_define([BASENAME_TEST],
217 [base=`AS_BASENAME([$1])`
218 test "$base" = "$2" ||
219 echo "basename($1) = $base instead of $2" >&2
221 base=`_AS_BASENAME_SED([$1])`
222 test "$base" = "$2" ||
223 echo "basename_sed($1) = $base instead of $2" >&2])
225 BASENAME_TEST([//1], [1])
226 BASENAME_TEST([/1], [1])
227 BASENAME_TEST([./1], [1])
228 BASENAME_TEST([../../2], [2])
229 BASENAME_TEST([//1/], [1])
230 BASENAME_TEST([/1/], [1])
231 BASENAME_TEST([./1/], [1])
232 BASENAME_TEST([../../2], [2])
233 BASENAME_TEST([//1/3], [3])
234 BASENAME_TEST([/1/3], [3])
235 BASENAME_TEST([./1/3], [3])
236 BASENAME_TEST([../../2/3], [3])
237 BASENAME_TEST([//1/3///], [3])
238 BASENAME_TEST([/1/3///], [3])
239 BASENAME_TEST([./1/3///], [3])
240 BASENAME_TEST([../../2/3///], [3])
241 BASENAME_TEST([//1//3/], [3])
242 BASENAME_TEST([/1//3/], [3])
243 BASENAME_TEST([./1//3/], [3])
244 BASENAME_TEST([a.c], [a.c])
245 BASENAME_TEST([a.c/], [a.c])
246 BASENAME_TEST([/a.c/], [a.c])
247 BASENAME_TEST([/1/a.c], [a.c])
248 BASENAME_TEST([/1/a.c/], [a.c])
249 BASENAME_TEST([/1/../a.c], [a.c])
250 BASENAME_TEST([/1/../a.c/], [a.c])
251 BASENAME_TEST([./1/a.c], [a.c])
252 BASENAME_TEST([./1/a.c/], [a.c])
268 AT_SETUP([AS@&t@_MKDIR_P])
270 AT_DATA_M4SH([script.as],
276 AS_MKDIR_P(["$pwd/1/2/3/4/5/6"])
277 test -d "$pwd/1/2/3/4/5/6" ||
278 AS_ERROR([$pwd/1/2/3/4/5/6 has not been properly created])
280 AS_MKDIR_P(["a/b/c/d/e/f"])
281 test -d a/b/c/d/e/f ||
282 AS_ERROR([a/b/c/d/e/f has not been properly created])
294 ## -------------------- ##
295 ## AS_VERSION_COMPARE. ##
296 ## -------------------- ##
299 AT_SETUP([AS@&t@_VERSION_COMPARE])
301 AT_DATA_M4SH([script.as],
304 m4_define([VERSION_COMPARE_TEST],
305 [AS_VERSION_COMPARE([$1], [$3], [result='<'], [result='='], [result='>'])
306 test "X$result" = "X$2" ||
307 AS_ERROR([version $1 $result $3; should be $1 $2 $3])
309 [AS_VERSION_COMPARE([$3], [$1], [result='<'], [result='='], [result='>'])
310 test "X$result" = "X>" ||
311 AS_ERROR([version $3 $result $1; should be $3 > $1])])])
313 VERSION_COMPARE_TEST([], =, [])
314 VERSION_COMPARE_TEST([1.0], =, [1.0])
315 VERSION_COMPARE_TEST([alpha-1.0], =, [alpha-1.0])
317 # These tests are taken from libc/string/tst-svc.expect.
319 000 001 00 00a 01 01a 0 0a 2.8 2.8-0.4 20 21 22 212 CP037 CP345 CP1257
320 foo foo-0.4 foo-0.4a foo-0.4b foo-0.5 foo-0.10.5 foo-3.01 foo-3.0
321 foo-3.0.0 foo-3.0.1 foo-3.2 foo-3.10 foo00 foo0
324 for test2 in $tst_svc_expect; do
325 VERSION_COMPARE_TEST([$test1], <, [$test2])
340 ## ----------------------------- ##
341 ## Negated classes in globbing. ##
342 ## ----------------------------- ##
344 # It is known that `[^...]' is not universally supported, but it is
345 # unknown for `[!...]'.
347 AT_SETUP([Negated classes in globbing])
349 AT_DATA_M4SH([script.as],
352 case 'with!two!bangs' in
354 *) AS_ERROR([[`*[!a-z]*' didn't match `with!two!bangs']]);;
358 *[[!a-z]]*) AS_ERROR([[`*[!a-z]*' matched `without']]);;
370 ## ------------------- ##
371 ## Functions Support. ##
372 ## ------------------- ##
374 # Hypothesis: the shell we are running, after having checked for
375 # $LINENO support, supports functions.
377 AT_SETUP([Functions Support])
379 AT_DATA_M4SH([script.as],
395 if func_success; then
396 if func_failure; then
397 AS_ERROR([func_failure passed])
400 AS_ERROR([func_success failed])
412 ## ------------------------------ ##
413 ## Functions and return Support. ##
414 ## ------------------------------ ##
416 # Hypothesis: the shell we are running, after having checked for
417 # $LINENO support, supports functions, and the `return' keyword.
419 AT_SETUP([Functions and return Support])
421 AT_DATA_M4SH([script.as],
433 if func_success; then
434 if func_failure; then
435 AS_ERROR([func_failure passed])
438 AS_ERROR([func_success failed])
448 ## ------------------------------------ ##
449 ## AS_REQUIRE_SHELL_FN and m4_require. ##
450 ## ------------------------------------ ##
452 # Hypothesis: M4sh expands the requirements of AS_REQUIRE_SHELL_FN
453 # in the main diversion, and not in M4SH-INIT.
455 AT_SETUP([AS@&t@_REQUIRE_SHELL_FN and m4@&t@_require])
457 AT_DATA_M4SH([script.as], [[dnl
460 m4_defun([in_m4_sh_init], still_in_m4sh_init=yes)
461 m4_defun([not_in_m4_sh_init], still_in_m4sh_init=no)
463 m4_defun([error_if_emitted_in_m4sh_init], [
464 if test x$still_in_m4sh_init = xyes; then
465 AS_ERROR([requirement emitted in M4SH-INIT])
469 m4_defun([TEST_FUNC_BODY], [
470 m4_require([error_if_emitted_in_m4sh_init])
471 : echo in shell function, with parameter = [$]1
475 m4_defun([test_init], [
476 AS_REQUIRE([in_m4_sh_init])
477 AS_REQUIRE_SHELL_FN([test_func], [TEST_FUNC_BODY])
478 AS_REQUIRE([not_in_m4_sh_init])
495 # I'm not totally certain that we want to enforce the defaults here,
496 # but at least it is being tested.
498 AT_SETUP([AS@&t@_HELP_STRING])
500 AT_DATA_M4SH([script.as],
504 echo "AS_HELP_STRING([--an-option],[some text])"
505 echo "AS_HELP_STRING([--another-much-longer-option],
506 [some other text which should wrap at our default of 80 characters.])"
507 echo "AS_HELP_STRING([--fooT=barT], [foo bar])"
508 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@], [foo bar])"
509 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@123456789], [foo bar])"
510 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@1234567890], [foo bar])"
511 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@12345678901], [foo bar])"
512 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@123456789012], [foo bar])"
513 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@1234567890123], [foo bar])"
514 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@],
515 [some other text which should wrap at our default of 80 characters.])"
516 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@123456789],
517 [some other text which should wrap at our default of 80 characters.])"
518 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@1234567890],
519 [some other text which should wrap at our default of 80 characters.])"
520 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@12345678901],
521 [some other text which should wrap at our default of 80 characters.])"
522 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@123456789012],
523 [some other text which should wrap at our default of 80 characters.])"
524 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@1234567890123],
525 [some other text which should wrap at our default of 80 characters.])"
526 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@],
527 [some other @<][:@ex@:][>@ which should wrap at our default of 80 characters.])"
528 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@123456789],
529 [some other @<][:@ex@:][>@ which should wrap at our default of 80 characters.])"
530 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@1234567890],
531 [some other @<][:@ex@:][>@ which should wrap at our default of 80 characters.])"
532 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@12345678901],
533 [some other @<][:@ex@:][>@ which should wrap at our default of 80 characters.])"
534 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@123456789012],
535 [some other @<][:@ex@:][>@ which should wrap at our default of 80 characters.])"
536 echo "AS_HELP_STRING([--foo@<][:@=bar@:][>@1234567890123],
537 [some other @<][:@ex@:][>@ which should wrap at our default of 80 characters.])"
541 AT_CHECK([./script], [0],
542 [[ --an-option some text
543 --another-much-longer-option
544 some other text which should wrap at our default of
548 --foo[=bar]123456789 foo bar
549 --foo[=bar]1234567890 foo bar
550 --foo[=bar]12345678901 foo bar
551 --foo[=bar]123456789012 foo bar
552 --foo[=bar]1234567890123
554 --foo[=bar] some other text which should wrap at our default of
556 --foo[=bar]123456789 some other text which should wrap at our default of
558 --foo[=bar]1234567890 some other text which should wrap at our default of
560 --foo[=bar]12345678901 some other text which should wrap at our default of
562 --foo[=bar]123456789012 some other text which should wrap at our default of
564 --foo[=bar]1234567890123
565 some other text which should wrap at our default of
567 --foo[=bar] some other [ex] which should wrap at our default of
569 --foo[=bar]123456789 some other [ex] which should wrap at our default of
571 --foo[=bar]1234567890 some other [ex] which should wrap at our default of
573 --foo[=bar]12345678901 some other [ex] which should wrap at our default of
575 --foo[=bar]123456789012 some other [ex] which should wrap at our default of
577 --foo[=bar]1234567890123
578 some other [ex] which should wrap at our default of
585 ## ------------------- ##
586 ## AS_IF and AS_CASE. ##
587 ## ------------------- ##
589 AT_SETUP([AS@&t@_IF and AS@&t@_CASE])
591 AT_DATA_M4SH([script.as], [[dnl
593 # Syntax checks: cope with empty arguments.
594 AS_IF([:], [], [echo wrong])
595 AS_IF([:], [echo one], [echo wrong])
596 AS_IF([false], [echo wrong], [echo two])
597 AS_IF([false], [echo wrong])
599 AS_IF([false], [echo wrong],
601 AS_IF([false], [echo wrong],
604 AS_IF([false], [echo wrong],
605 [false], [echo wrong])
606 AS_IF([false], [echo wrong],
607 [false], [echo wrong],
609 AS_IF([false], [echo wrong],
610 [false], [echo wrong],
614 AS_CASE([foo], [echo seven])
626 # check that require works correctly
627 m4_for([n], 1, 9, [],
628 [m4_defun([FOO]n, [foo]n[=]n)dnl
630 [m4_require([FOO]]n[)dnl
635 echo "foo1=$foo1 bar1=$bar1"
636 AS_IF([:], [], [BAR2])
637 echo "foo2=$foo2 bar2=$bar2"
638 AS_IF([false], [BAR3])
639 echo "foo3=$foo3 bar3=$bar3"
640 AS_IF([false], [], [BAR4])
641 echo "foo4=$foo4 bar4=$bar4"
642 AS_CASE([x], [x], [BAR5])
643 echo "foo5=$foo5 bar5=$bar5"
644 AS_CASE([x], [y], [BAR6])
645 echo "foo6=$foo6 bar6=$bar6"
649 echo "foo7=$foo7 bar7=$bar7"
653 echo "foo8=$foo8 bar8=$bar8"
657 echo "foo9=$foo9 bar9=$bar9"
661 AT_CHECK([./script], [0], [[one
685 ## --------------- ##
687 ## --------------- ##
689 AT_SETUP([AS@&t@_LITERAL_IF])
691 AT_DATA_M4SH([script.as], [[dnl
693 echo AS_LITERAL_IF([lit], [ok], [ERR]) 1
694 echo AS_LITERAL_IF([l$it], [ERR], [ok]) 2
695 echo AS_LITERAL_IF([l``it], [ERR], [ok]) 3
696 m4_define([mac], [lit])
697 echo AS_LITERAL_IF([mac], [ok], [ERR]) 4
698 echo AS_LITERAL_IF([mac($, ``)], [ok], [ERR]) 5
699 m4_define([mac], [l$it])
700 echo AS_LITERAL_IF([mac], [ERR], [ok]) 6
701 m4_define([mac], [l`it])
702 echo AS_LITERAL_IF([mac], [ERR], [ok]) 7
706 AT_CHECK([./script], [],