Since Perl 5.25.11, Perl has omitted "." from its default library path.

This affects both "require" and "do", which autoheader uses.

Previously, people assumed (incorrectly) that:

        do "foo.pm"

Was *literally* equivalent to

        eval `cat foo.pm`

Unfortunately, due to a gross lack of clarity in the documentation, this
was only *effectively* the case due to @INC traversal where '.' ( CWD )
made it work.

The end result now is this statement in autoheader:

https://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=blob;f=bin/autoheader.in;hb=60460b91d0944a376063edd4ef09112a21ffa3d6#l186

 185 debug "$me: 'do'ing $tmp/traces.pl:\n" . `sed 's/^/| /' 
$quoted_tmp/traces.pl`;
 186 do "$tmp/traces.pl";
 187 warn "couldn't parse $tmp/traces.pl: $@" if $@;
 188 unless ($config_h)

Will habitually do the wrong thing, and emits a failure in tools.at as
follows:

--- /dev/null   2017-04-23 16:19:22.434000368 +0000
+++ 
/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests/testsuite.dir/at-groups/38/stderr
      2017-04-28 21:00:36.523807621 +0000
@@ -0,0 +1,2 @@
+do " tmp dir with  funny ' $x & #! name /ahV118Zr/traces.pl" failed, '.' is no 
longer in @INC; did you mean do "./ tmp dir with  funny ' $x & #! name 
/ahV118Zr/traces.pl"? at 
/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/bin/autoheader 
line 186.
+autoheader: error: AC_CONFIG_HEADERS not found in  file with  funny ' $x & #! 
name .in
./tools.at:1310: exit code was 1, expected 0
38. tools.at:1278: 38. autotools and whitespace in file names (tools.at:1278): 
FAILED (tools.at:1310)

#                             -*- compilation -*-


The solution may be simple:

Both "do" and "require" can have @INC traversal subverted by passing
either an explicitly relative path ( that is, with a leading './' ), or
a computed absolute path, as these are special cased in the underling
mechanic. Do exercise extreme caution here, as not to blindly reinsert
'.' into @INC as that has possible security implications.

In the event the consequences of this is limited only to testing,
affected end users can temporarily restore the traditional behaviour of
an implicit ".", by setting PERL_USE_UNSAFE_INC=1 in their environment,
and this value is used in a few significant CPAN toolchain pieces to
mitigate the consequences of this change there.

However, if as I suspect the problem is greater than just this test
failing, and the real failure exhibits real problems at runtime, this
work around will need to be applied everywhere they expect autoheader
to be run, until a real fix is applied.

Attached is the full build output and test logs from Gentoo's (patched)
version of 2.69, which already has some fixes applied for perl 5.26.




## ----------------------------- ##
## GNU Autoconf 2.69 test suite. ##
## ----------------------------- ##

testsuite: command line was:
  $ ./testsuite 

## ---------- ##
## ChangeLog. ##
## ---------- ##

| 2012-04-24  Eric Blake  <ebl...@redhat.com>
| 
| 	Release Version 2.69.
| 	* NEWS: Mention the release.
| 
| 2012-04-24  Eric Blake  <ebl...@redhat.com>
| 
| 	maint: drop bz2 tarball
| 	At 2.68b, I asked whether anyone would miss .gz and .bz2 formats.
| 	Consensus was overwhelming that .gz still holds a place in people's

## --------- ##
## Platform. ##
## --------- ##

hostname = ember
uname -m = x86_64
uname -r = 4.9.6-gentoo-r1
uname -s = Linux
uname -v = #24 SMP Wed Feb 22 00:02:49 NZDT 2017

/usr/bin/uname -p = Intel(R) Core(TM)2 Duo CPU E6750 @ 2.66GHz
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests
PATH: /usr/lib/portage/python2.7/ebuild-helpers/xattr
PATH: /usr/lib/portage/python2.7/ebuild-helpers
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /usr/x86_64-pc-linux-gnu/gcc-bin/5.4.0

testsuite: atconfig:
| # Configurable variable values for building test suites.
| # Generated by ./config.status.
| # Copyright (C) 2012 Free Software Foundation, Inc.
| 
| # The test suite will define top_srcdir=/../.. etc.
| at_testdir='tests'
| abs_builddir='/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests'
| at_srcdir='.'
| abs_srcdir='/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests'
| at_top_srcdir='..'
| abs_top_srcdir='/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69'
| at_top_build_prefix='../'
| abs_top_builddir='/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69'
| 
| # Backward compatibility with Autotest <= 2.59b:
| at_top_builddir=$at_top_build_prefix
| 
| AUTOTEST_PATH='tests'
| 
| SHELL=${CONFIG_SHELL-'/bin/sh'}

testsuite: atlocal:
| # -*- shell-script -*-
| # tests/atlocal.  Generated from atlocal.in by configure.
| # Configurable variable values for Autoconf test suite.
| 
| # Copyright (C) 2000-2001, 2005, 2008-2012 Free Software Foundation,
| # Inc.
| #
| # 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
| 
| PERL='/usr/bin/perl'
| GREP='/bin/grep'
| EGREP='/bin/grep -E'
| SED='/bin/sed'
| 
| # We need to know if sh -n is ok.
| ac_cv_sh_n_works='yes'
| 
| # Check whether the underlying system can manage some unusual
| # symbols in file names.
| if test -z ''; then
|   func_sanitize_file_name () { echo "$@"; }
| else
|   func_sanitize_file_name () { echo "$@" | tr -d ''; }
| fi
| 
| # Can we create directories with trailing whitespace in their names?
| ac_cv_dir_trailing_space='yes'
| if test "$ac_cv_dir_trailing_space" = yes; then
|   func_sanitize_dir_name () { echo "$@"; }
| else
|   func_sanitize_dir_name () { echo "$@" | sed 's/  *$//'; }
| fi
| 
| # AUTOM4TE might be set in the environment.  Override it here so that
| # direct aclocal invocations also use it.
| AUTOM4TE=autom4te
| export AUTOM4TE

## ---------------- ##
## Tested programs. ##
## ---------------- ##

./local.at:527: /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests/autom4te --version
autom4te (GNU Autoconf) 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+/Autoconf: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>, <http://gnu.org/licenses/exceptions.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Akim Demaille.

./local.at:527: /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests/autoconf --version
autoconf (GNU Autoconf) 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+/Autoconf: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>, <http://gnu.org/licenses/exceptions.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David J. MacKenzie and Akim Demaille.

./local.at:527: /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests/autoheader --version
autoheader (GNU Autoconf) 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+/Autoconf: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>, <http://gnu.org/licenses/exceptions.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Roland McGrath and Akim Demaille.

./local.at:527: /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests/autoupdate --version
autoupdate (GNU Autoconf) 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+/Autoconf: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>, <http://gnu.org/licenses/exceptions.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David J. MacKenzie and Akim Demaille.

./local.at:527: /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests/autoreconf --version
autoreconf (GNU Autoconf) 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+/Autoconf: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>, <http://gnu.org/licenses/exceptions.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David J. MacKenzie and Akim Demaille.

./local.at:527: /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests/ifnames --version
ifnames (GNU Autoconf) 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+/Autoconf: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>, <http://gnu.org/licenses/exceptions.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David J. MacKenzie and Paul Eggert.

## ------------------ ##
## Running the tests. ##
## ------------------ ##
testsuite: starting at: Fri Apr 28 20:59:55 -00 2017
1. Syntax of the shell scripts (tools.at:46): ok     (0m0.326s 0m0.009s)
2. Syntax of the Perl scripts (tools.at:70): ok     (0m0.417s 0m0.053s)
3. autom4te cache (tools.at:88): ok     (0m0.282s 0m0.089s)
4. autom4te --force (tools.at:119): ok     (0m0.186s 0m0.063s)
5. autom4te and whitespace in file names (tools.at:145): ok     (0m0.999s 0m0.348s)
6. autom4te --trace and unusual macro names (tools.at:217): ok     (0m0.095s 0m0.025s)
7. autom4te --trace and whitespace (tools.at:227): ok     (0m0.095s 0m0.028s)
8. autoconf --trace: user macros (tools.at:252): ok     (0m0.480s 0m0.167s)
9. autoconf --trace: builtins (tools.at:338): ok     (0m0.429s 0m0.096s)
10. autoconf: forbidden tokens, basic (tools.at:369): ok     (0m0.233s 0m0.085s)
11. autoconf: forbidden tokens, exceptions (tools.at:407): ok     (0m0.127s 0m0.045s)
12. autoconf: automatically allowed tokens (tools.at:446): ok     (0m0.192s 0m0.048s)
13. autoconf: the empty token (tools.at:463): ok     (0m0.112s 0m0.055s)
14. autoconf: subdirectories (tools.at:478): ok     (0m0.307s 0m0.219s)
15. autoconf: input from stdin (tools.at:504): ok     (0m0.292s 0m0.094s)
16. autoconf: AC_AUTOCONF_VERSION (tools.at:522): ok     (0m0.196s 0m0.043s)
17. autoconf: AC_PRESERVE_HELP_ORDER (tools.at:540): ok     (0m0.215s 0m0.073s)
18. ifnames (tools.at:577): ok     (0m0.070s 0m0.012s)
19. autoheader (tools.at:625): ok     (0m0.638s 0m0.144s)
20. autoheader and macros (tools.at:758): ok     (0m0.387s 0m0.097s)
21. autoupdate (tools.at:799): ok     (0m1.659s 0m0.191s)
22. autoupdating AC_LINK_FILES (tools.at:831): ok     (0m1.097s 0m0.267s)
23. autoupdating AC_PREREQ (tools.at:858): ok     (0m2.491s 0m0.303s)
24. autoupdating AU_ALIAS (tools.at:879): ok     (0m1.438s 0m0.526s)
25. autoupdating OLD to NEW (tools.at:905): ok     (0m1.019s 0m0.211s)
27. autoupdating AC_HELP_STRING (tools.at:955): ok     (0m1.018s 0m0.207s)
28. autoupdating with m4sugar (tools.at:973): ok     (0m1.188s 0m0.302s)
32. autoupdating AC_LANG_SAVE (tools.at:1088): ok     (0m1.079s 0m0.198s)
33. autoupdating AC_FOREACH (tools.at:1108): ok     (0m1.067s 0m0.184s)
34. autoupdating with aclocal and m4_include (tools.at:1132): ok     (0m2.473s 0m0.283s)
35. autom4te preselections (tools.at:1162): skipped (tools.at:1200)
36. autom4te cache creation (tools.at:1215): ok     (0m0.410s 0m0.133s)
37. autom4te cache locking (tools.at:1258): ok     (0m0.375s 0m0.121s)
39. m4_stack (m4sugar.at:41): ok     (0m0.094s 0m0.031s)
40. m4_defn (m4sugar.at:102): ok     (0m0.467s 0m0.169s)
41. m4_dumpdef (m4sugar.at:186): ok     (0m0.386s 0m0.128s)
42. m4_warn (m4sugar.at:245): ok     (0m0.382s 0m0.129s)
43. m4_divert_stack (m4sugar.at:303): ok     (0m0.458s 0m0.168s)
44. m4_expansion_stack (m4sugar.at:392): ok     (0m0.092s 0m0.033s)
45. m4_require: error message (m4sugar.at:416): ok     (0m0.092s 0m0.030s)
46. m4_require: circular dependencies (m4sugar.at:436): ok     (0m0.092s 0m0.032s)
47. m4_require: one-shot initialization (m4sugar.at:466): ok     (0m0.185s 0m0.065s)
48. m4_require: nested (m4sugar.at:527): ok     (0m0.482s 0m0.150s)
49. m4sugar shorthand conditionals (m4sugar.at:695): ok     (0m0.093s 0m0.032s)
50. m4_cond (m4sugar.at:780): ok     (0m0.096s 0m0.035s)
51. m4 lists (m4sugar.at:832): ok     (0m0.190s 0m0.059s)
52. m4_split (m4sugar.at:884): ok     (0m0.090s 0m0.035s)
53. m4_do (m4sugar.at:930): ok     (0m0.098s 0m0.027s)
54. m4_append (m4sugar.at:958): ok     (0m0.190s 0m0.066s)
55. m4_join (m4sugar.at:1042): ok     (0m0.093s 0m0.032s)
56. m4_expand (m4sugar.at:1093): ok     (0m0.094s 0m0.032s)
57. m4_text_box (m4sugar.at:1149): ok     (0m0.096s 0m0.029s)
58. m4_text_wrap (m4sugar.at:1173): ok     (0m0.101s 0m0.027s)
59. m4_version_compare (m4sugar.at:1235): ok     (0m0.099s 0m0.035s)
60. Standard regular expressions (m4sugar.at:1293): ok     (0m0.654s 0m0.219s)
61. m4_bmatch (m4sugar.at:1320): ok     (0m0.103s 0m0.022s)
62. m4_toupper and m4_tolower (m4sugar.at:1352): ok     (0m0.098s 0m0.027s)
63. m4_bpatsubsts (m4sugar.at:1389): ok     (0m0.097s 0m0.029s)
64. m4_esyscmd_s (m4sugar.at:1418): ok     (0m0.094s 0m0.033s)
65. M4 loops (m4sugar.at:1446): ok     (0m0.480s 0m0.149s)
66. m4_map (m4sugar.at:1600): ok     (0m0.096s 0m0.036s)
67. m4_map_args and m4_curry (m4sugar.at:1675): ok     (0m0.282s 0m0.094s)
68. m4_combine (m4sugar.at:1747): ok     (0m0.094s 0m0.031s)
69. m4_max and m4_min (m4sugar.at:1774): ok     (0m0.282s 0m0.096s)
70. recursion (m4sugar.at:1853): ok     (0m2.927s 0m0.065s)
71. m4_set (m4sugar.at:1970): ok     (0m2.153s 0m0.116s)
72. __file__ and __line__ (m4sugar.at:2120): ok     (0m0.098s 0m0.027s)
73. No extra re-exec with CONFIG_SHELL (m4sh.at:24): ok     (0m0.111s 0m0.026s)
74. Forced re-exec with CONFIG_SHELL (m4sh.at:42): ok     (0m0.117s 0m0.049s)
75. Configure re-execs self with CONFIG_SHELL (m4sh.at:110): ok     (0m0.237s 0m0.110s)
76. AS_WARN and AS_ERROR (m4sh.at:145): ok     (0m0.245s 0m0.097s)
77. LINENO (m4sh.at:210): ok     (0m0.409s 0m0.202s)
78. LINENO stack (m4sh.at:287): ok     (0m0.113s 0m0.032s)
79. AS_BOX (m4sh.at:316): ok     (0m0.103s 0m0.047s)
80. AS_BASENAME (m4sh.at:358): ok     (0m0.154s 0m0.096s)
81. AS_DIRNAME (m4sh.at:415): ok     (0m0.165s 0m0.120s)
82. AS_SET_CATFILE (m4sh.at:474): ok     (0m0.114s 0m0.026s)
83. AS_ECHO and AS_ECHO_N (m4sh.at:518): ok     (0m0.120s 0m0.022s)
84. AS_EXECUTABLE_P (m4sh.at:567): ok     (0m0.105s 0m0.043s)
85. AS_EXIT (m4sh.at:619): ok     (0m0.135s 0m0.052s)
86. AS_MKDIR_P (m4sh.at:668): ok     (0m0.118s 0m0.037s)
87. AS_VERSION_COMPARE (m4sh.at:700): ok     (0m0.152s 0m0.071s)
88. as_me (m4sh.at:746): ok     (0m0.105s 0m0.036s)
89. Negated classes in globbing (m4sh.at:770): ok     (0m0.106s 0m0.038s)
90. Null variable substitution (m4sh.at:798): ok     (0m0.108s 0m0.035s)
91. Functions Support (m4sh.at:864): ok     (0m0.119s 0m0.028s)
92. Functions and return Support (m4sh.at:906): ok     (0m0.110s 0m0.038s)
93. Nested AS_REQUIRE_SHELL_FN (m4sh.at:943): ok     (0m0.103s 0m0.031s)
94. Nested AS_REQUIRE (m4sh.at:976): ok     (0m0.105s 0m0.034s)
95. AS_REQUIRE_SHELL_FN and m4_require (m4sh.at:1014): ok     (0m0.112s 0m0.033s)
96. AS_HELP_STRING (m4sh.at:1055): ok     (0m0.123s 0m0.026s)
97. AS_IF and AS_CASE (m4sh.at:1194): ok     (0m0.494s 0m0.069s)
98. AS_FOR (m4sh.at:1351): ok     (0m0.107s 0m0.035s)
99. AS_LITERAL_IF (m4sh.at:1419): ok     (0m0.108s 0m0.030s)
100. AS_TR_SH and AS_TR_CPP (m4sh.at:1497): ok     (0m0.124s 0m0.070s)
101. AS_VAR basics (m4sh.at:1582): ok     (0m0.110s 0m0.037s)
102. AS_VAR_APPEND (m4sh.at:1694): ok     (0m0.101s 0m0.037s)
103. AS_VAR_ARITH (m4sh.at:1729): ok     (0m0.110s 0m0.028s)
104. AS_INIT cleanup (m4sh.at:1760): ok     (0m0.105s 0m0.032s)
105. AS_INIT_GENERATED (m4sh.at:1797): ok     (0m0.331s 0m0.200s)
106. AS_MESSAGE_FD (m4sh.at:1871): ok     (0m0.127s 0m0.049s)
107. _AS_CLEAN_DIR (m4sh.at:1915): ok     (0m0.110s 0m0.048s)
108. ECHO_C (m4sh.at:1944): ok     (0m0.120s 0m0.045s)
109. AT_COPYRIGHT (autotest.at:144): ok     (0m0.175s 0m0.085s)
110. AT_DATA (autotest.at:165): ok     (0m0.242s 0m0.214s)
111. Empty test suite (autotest.at:186): ok     (0m0.230s 0m0.133s)
112. Banner-only test suite (autotest.at:190): ok     (0m0.207s 0m0.162s)
113. Empty test (autotest.at:196): ok     (0m0.223s 0m0.177s)
114. Empty check (autotest.at:199): ok     (0m0.206s 0m0.200s)
115. AT_SETUP without AT_INIT (autotest.at:202): ok     (0m0.102s 0m0.031s)
116. AT_BANNER without AT_INIT (autotest.at:208): ok     (0m0.098s 0m0.034s)
117. AT_CLEANUP without AT_INIT (autotest.at:212): ok     (0m0.101s 0m0.031s)
118. Missing AT_CLEANUP (autotest.at:216): ok     (0m0.116s 0m0.038s)
119. AT_FAIL_IF without AT_SETUP (autotest.at:222): ok     (0m0.120s 0m0.033s)
120. AT_SKIP_IF without AT_SETUP (autotest.at:227): ok     (0m0.124s 0m0.029s)
121. AT_CHECK without AT_SETUP (autotest.at:232): ok     (0m0.117s 0m0.036s)
122. AT_DATA without AT_SETUP (autotest.at:237): ok     (0m0.112s 0m0.041s)
123. AT_XFAIL_IF without AT_SETUP (autotest.at:242): ok     (0m0.123s 0m0.031s)
124. AT_KEYWORDS without AT_SETUP (autotest.at:247): ok     (0m0.119s 0m0.034s)
125. AT_CLEANUP without AT_SETUP (autotest.at:252): ok     (0m0.122s 0m0.031s)
126. AT_BANNER inside AT_SETUP (autotest.at:257): ok     (0m0.122s 0m0.032s)
127. AT_SETUP inside AT_SETUP (autotest.at:265): ok     (0m0.116s 0m0.037s)
128. Multiple AT_INIT (autotest.at:275): ok     (0m0.115s 0m0.038s)
129. Tested programs (autotest.at:281): ok     (0m0.419s 0m0.218s)
130. Startup error messages (autotest.at:291): ok     (0m0.231s 0m0.177s)
131. Truth (autotest.at:303): ok     (0m0.227s 0m0.182s)
132. Fallacy (autotest.at:306): ok     (0m0.265s 0m0.226s)
133. Skip (autotest.at:311): ok     (0m0.231s 0m0.179s)
134. Hard fail (autotest.at:316): ok     (0m0.268s 0m0.274s)
135. AT_FAIL_IF (autotest.at:326): ok     (0m0.306s 0m0.330s)
136. AT_SKIP_IF (autotest.at:346): ok     (0m0.268s 0m0.287s)
137. Syntax error (autotest.at:366): skipped (autotest.at:366)
138. errexit (autotest.at:385): ok     (0m0.425s 0m0.488s)
139. at_status (autotest.at:427): ok     (0m0.453s 0m0.626s)
140. AT_CHECK execution environment (autotest.at:453): ok     (0m0.248s 0m0.229s)
141. unquoted output (autotest.at:472): ok     (0m0.224s 0m0.181s)
142. Trace output (autotest.at:479): ok     (0m0.227s 0m0.180s)
143. Logging (autotest.at:485): ok     (0m0.489s 0m0.692s)
144. Binary output (autotest.at:530): ok     (0m0.433s 0m0.607s)
145. Cleanup (autotest.at:572): ok     (0m0.482s 0m0.717s)
146. Literal multiline command (autotest.at:612): ok     (0m0.241s 0m0.163s)
147. Multiline parameter expansion (autotest.at:618): ok     (0m0.229s 0m0.174s)
148. Backquote command substitution (autotest.at:625): ok     (0m0.224s 0m0.184s)
149. Multiline backquote command substitution (autotest.at:630): ok     (0m0.238s 0m0.170s)
150. Parenthetical command substitution (autotest.at:638): ok     (0m0.219s 0m0.181s)
151. Multiline parenthetical command substitution (autotest.at:643): ok     (0m0.233s 0m0.179s)
152. Shell comment in command (autotest.at:653): ok     (0m0.226s 0m0.185s)
153. Invalid brace-enclosed parameter expansion (autotest.at:667): ok     (0m0.247s 0m0.239s)
154. Multiline command from M4 expansion (autotest.at:675): ok     (0m0.219s 0m0.185s)
155. Double-M4-quoted command (autotest.at:682): ok     (0m0.229s 0m0.181s)
156. Metacharacters in command from M4 expansion (autotest.at:689): ok     (0m0.214s 0m0.192s)
157. BS-newline in command (autotest.at:699): ok     (0m0.230s 0m0.173s)
158. ^BS-newline in command (autotest.at:704): ok     (0m0.229s 0m0.177s)
159. BSx641-newline in command (autotest.at:709): ok     (0m0.245s 0m0.164s)
160. BS-BS-newline in command (autotest.at:714): ok     (0m0.233s 0m0.170s)
161. BSx640-newline in command (autotest.at:722): ok     (0m0.228s 0m0.176s)
162. Newline-CODE-BS-newline in command (autotest.at:729): ok     (0m0.231s 0m0.174s)
163. Single-quote-BS-newline in command (autotest.at:736): ok     (0m0.226s 0m0.175s)
164. Single-quote-newline-BS-newline in command (autotest.at:742): ok     (0m0.231s 0m0.176s)
165. Input from stdin (autotest.at:755): ok     (0m0.252s 0m0.195s)
166. Backquote in a test title (autotest.at:831): ok     (0m0.346s 0m0.332s)
167. Single-quote in a test title (autotest.at:832): ok     (0m0.315s 0m0.352s)
168. Double-quote in a test title (autotest.at:833): ok     (0m0.327s 0m0.348s)
169. Backslash in a test title (autotest.at:835): ok     (0m0.325s 0m0.350s)
170. Brackets in a test title (autotest.at:836): ok     (0m0.324s 0m0.347s)
171. Left bracket in a test title (autotest.at:837): ok     (0m0.317s 0m0.359s)
172. Right bracket in a test title (autotest.at:838): ok     (0m0.324s 0m0.353s)
173. Quoted pound in a test title (autotest.at:839): ok     (0m0.315s 0m0.364s)
174. Pound in a test title (autotest.at:840): ok     (0m0.317s 0m0.359s)
175. Quoted comma in a test title (autotest.at:841): ok     (0m0.333s 0m0.344s)
176. Comma in a test title (autotest.at:842): ok     (0m0.344s 0m0.325s)
177. Parentheses in a test title (autotest.at:844): ok     (0m0.321s 0m0.360s)
178. Left paren in a test title (autotest.at:845): ok     (0m0.316s 0m0.361s)
179. Right paren in a test title (autotest.at:846): ok     (0m0.314s 0m0.360s)
180. Quoted Macro in a test title (autotest.at:848): ok     (0m0.312s 0m0.372s)
181. Macro in a test title (autotest.at:849): ok     (0m0.314s 0m0.356s)
182. Macro with backquote in a test title (autotest.at:850): ok     (0m0.316s 0m0.355s)
183. Macro with single-quote in a test title (autotest.at:851): ok     (0m0.327s 0m0.346s)
184. Macro with double-quote in a test title (autotest.at:852): ok     (0m0.336s 0m0.337s)
185. Macro with backslash in a test title (autotest.at:854): ok     (0m0.307s 0m0.367s)
186. Macro echoing macro in a test title (autotest.at:855): ok     (0m0.313s 0m0.364s)
187. Macro echoing single-quote in a test title (autotest.at:857): ok     (0m0.322s 0m0.353s)
188. Long test title in a test title (autotest.at:858): ok     (0m0.321s 0m0.354s)
189. Longer test title in a test title (autotest.at:859): ok     (0m0.324s 0m0.354s)
190. Long test source lines (autotest.at:870): ok     (0m0.283s 0m0.236s)
191. Huge testsuite (autotest.at:884): ok     (0m1.203s 0m0.189s)
192. Debugging a successful test (autotest.at:896): ok     (0m0.337s 0m0.417s)
193. Debugging script and environment (autotest.at:910): ok     (0m0.453s 0m0.566s)
194. Debugging a failed test (autotest.at:927): ok     (0m0.353s 0m0.429s)
195. Using atlocal (autotest.at:938): ok     (0m0.504s 0m0.718s)
196. Choosing where testsuite is run (autotest.at:973): ok     (0m0.400s 0m0.511s)
197. recheck (autotest.at:1008): ok     (0m0.637s 0m0.921s)
198. Banners (autotest.at:1056): ok     (0m1.069s 0m1.948s)
199. Keywords and ranges (autotest.at:1123): ok     (0m2.000s 0m3.824s)
200. Keyword wrapping (autotest.at:1226): ok     (0m0.168s 0m0.058s)
201. AT_ARG_OPTION (autotest.at:1255): ok     (0m0.815s 0m1.228s)
202. AT_ARG_OPTION_ARG (autotest.at:1304): ok     (0m0.768s 0m1.201s)
203. parallel test execution (autotest.at:1370): ok     (0m0.692s 0m1.199s)
204. parallel truth (autotest.at:1461): ok     (0m0.237s 0m0.174s)
205. parallel fallacy (autotest.at:1466): ok     (0m0.265s 0m0.240s)
206. parallel skip (autotest.at:1471): ok     (0m0.223s 0m0.202s)
207. parallel syntax error (autotest.at:1476): skipped (autotest.at:1476)
208. parallel errexit (autotest.at:1495): ok     (0m0.287s 0m0.280s)
209. parallel autotest and signal handling (autotest.at:1511): ok     (0m0.728s 0m1.200s)
210. parallel args but non-working mkfifo (autotest.at:1630): ok     (0m0.261s 0m0.216s)
211. colored test results (autotest.at:1652): ok     (0m0.749s 0m1.226s)
212. srcdir propagation (autotest.at:1741): ok     (0m1.135s 0m1.481s)
213. whitespace in absolute testdir (autotest.at:1819): ok     (0m0.283s 0m0.251s)
214. unusual file names (autotest.at:1843): ok     (0m0.185s 0m0.132s)
215. Erlang Eunit unit tests (autotest.at:1873): ok     (0m0.527s 0m0.363s)
216. AC_REQUIRE: topological sort (base.at:28): ok     (0m0.132s 0m0.053s)
217. AC_REQUIRE: error message (base.at:72): ok     (0m0.111s 0m0.047s)
218. AC_REQUIRE & AC_DEFUN_ONCE: Require, expand (base.at:90): ok     (0m0.133s 0m0.051s)
219. AC_REQUIRE & AC_DEFUN_ONCE: Expand, require (base.at:132): ok     (0m0.129s 0m0.054s)
220. AC_REQUIRE & AC_PROVIDE (base.at:174): ok     (0m0.133s 0m0.052s)
221. AC_INIT (base.at:207): ok     (0m0.229s 0m0.107s)
222. AC_INIT with unusual version strings (base.at:226): ok     (0m0.936s 0m0.419s)
223. AC_COPYRIGHT (base.at:291): ok     (0m0.197s 0m0.082s)
224. AC_CACHE_CHECK (base.at:322): skipped (base.at:488)
225. AC_CACHE_LOAD (base.at:513): ok     (0m0.272s 0m0.178s)
226. AC_COMPUTE_INT (base.at:539): ok     (0m0.480s 0m0.280s)
227. AC_TRY_COMMAND (base.at:561): ok     (0m0.227s 0m0.110s)
228. Input/Output (base.at:591): ok     (0m0.280s 0m0.172s)
229. configure arguments (base.at:609): ok     (0m0.258s 0m0.168s)
230. AC_ARG_ENABLE and AC_ARG_WITH (base.at:631): ok     (0m0.355s 0m0.325s)
231. configure directories (base.at:683): ok     (0m0.314s 0m0.251s)
232. AC_CONFIG_COMMANDS with empty commands (torture.at:26): ok     (0m0.600s 0m0.422s)
233. AC_CONFIG_COMMANDS with temporary directory (torture.at:35): ok     (0m0.626s 0m0.498s)
234. Multiple AC_CONFIG_FILES (torture.at:63): ok     (0m0.138s 0m0.042s)
235. Parameterized AC_CONFIG_FILES (torture.at:75): ok     (0m0.331s 0m0.253s)
236. AC_ARG_VAR (torture.at:129): ok     (0m1.881s 0m2.732s)
237. AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS (torture.at:186): ok     (0m2.149s 0m3.525s)
238. Macro calls in AC_CONFIG_COMMANDS tags (torture.at:377): ok     (0m0.284s 0m0.159s)
239. Missing templates (torture.at:397): ok     (0m0.407s 0m0.348s)
240. configure invocation (torture.at:439): ok     (0m1.327s 0m1.477s)
241. #define header templates (torture.at:503): ok     (0m0.323s 0m0.250s)
242. Torturing config.status (torture.at:637): ok     (0m0.971s 0m0.837s)
243. Substitute a 2000-byte string (torture.at:779): ok     (0m0.508s 0m0.498s)
244. Define to a 2000-byte string (torture.at:857): ok     (0m0.486s 0m0.235s)
245. Substitute and define special characters (torture.at:881): ok     (0m0.694s 0m0.557s)
246. Substitute a newline (torture.at:988): ok     (0m0.444s 0m0.373s)
247. Define a newline (torture.at:1029): ok     (0m0.950s 0m0.515s)
248. AC_SUBST: variable name validation (torture.at:1074): ok     (0m2.483s 0m1.093s)
249. datarootdir workaround (torture.at:1104): ok     (0m0.606s 0m0.457s)
250. srcdir (torture.at:1155): ok     (0m0.533s 0m0.589s)
251. VPATH (torture.at:1198): ok     (0m0.563s 0m0.793s)
252. Signal handling (torture.at:1284): ok     (0m0.238s 0m0.095s)
253. AC_CONFIG_LINKS (torture.at:1302): ok     (0m1.328s 0m1.952s)
254. AC_CONFIG_LINKS and identical files (torture.at:1356): ok     (0m0.912s 0m1.042s)
255. Configuring subdirectories (torture.at:1429): ok     (0m5.528s 0m2.941s)
256. Deep Package (torture.at:1562): ok     (0m5.144s 0m3.599s)
257. Non-Autoconf AC_CONFIG_SUBDIRS (torture.at:1698): ok     (0m1.117s 0m0.367s)
258. Non-literal AC_CONFIG_SUBDIRS (torture.at:1740): ok     (0m1.952s 0m0.722s)
259. Empty directory (torture.at:1791): ok     (0m0.337s 0m0.058s)
260. Unusual Automake input files (torture.at:1812): ok     (0m1.530s 0m0.370s)
261. AC_LANG, AC_LANG_PUSH & AC_LANG_POP (compile.at:31): ok     (0m0.186s 0m0.044s)
262. AC_REQUIRE & AC_LANG (compile.at:83): ok     (0m0.222s 0m0.110s)
263. AC_LANG_SOURCE (compile.at:119): ok     (0m0.465s 0m0.272s)
264. AC_LANG_SOURCE(C++) (compile.at:144): ok     (0m0.461s 0m0.274s)
265. AC_LANG_SOURCE example (compile.at:170): ok     (0m0.222s 0m0.127s)
266. AC_LANG_PROGRAM example (compile.at:215): ok     (0m0.225s 0m0.124s)
267. AC_COMPILE_IFELSE (compile.at:267): ok     (0m1.599s 0m0.919s)
268. AC_RUN_IFELSE (compile.at:310): ok     (0m0.556s 0m0.320s)
269. Order of user actions and cleanup (compile.at:344): ok     (0m0.619s 0m0.429s)
270. AC_TRY_LINK_FUNC (compile.at:390): ok     (0m1.072s 0m0.777s)
271. Multiple languages (compile.at:400): ok     (0m2.006s 0m1.264s)
272. AC_NO_EXECUTABLES (aclang.at:13): ok     (0m0.606s 0m0.420s)
273. AC_REQUIRE_CPP (aclang.at:14): ok     (0m0.998s 0m0.712s)
274. Extensions (c.at:33): ok     (0m0.946s 0m0.662s)
275. Broken/missing compilers (c.at:56): ok     (0m0.267s 0m0.136s)
276. C keywords (c.at:75): ok     (0m0.983s 0m0.729s)
277. AC_PROG_CPP requires AC_PROG_CC (c.at:93): ok     (0m0.995s 0m0.716s)
278. AC_PROG_CPP with warnings (c.at:108): ok     (0m0.782s 0m0.478s)
279. AC_PROG_CPP without warnings (c.at:140): ok     (0m0.769s 0m0.500s)
280. AC_PROG_CPP via CC (c.at:180): ok     (0m0.785s 0m0.509s)
281. AC_NO_EXECUTABLES (working linker) (c.at:221): ok     (0m0.999s 0m0.709s)
282. AC_NO_EXECUTABLES (broken linker) (c.at:231): ok     (0m0.803s 0m0.562s)
283. AC_USE_SYSTEM_EXTENSIONS (c.at:242): ok     (0m2.432s 0m1.534s)
284. AC_C_RESTRICT and C++ (c.at:265): ok     (0m0.826s 0m0.532s)
285. AC_OPENMP and C (c.at:328): ok     (0m0.929s 0m0.567s)
286. AC_OPENMP and C++ (c.at:382): ok     (0m0.957s 0m0.554s)
287. AC_C_BACKSLASH_A (acc.at:13): ok     (0m0.971s 0m0.672s)
288. AC_C_BIGENDIAN (acc.at:14): ok     (0m1.425s 0m1.111s)
289. AC_C_CHAR_UNSIGNED (acc.at:15): ok     (0m1.410s 0m1.059s)
290. AC_C_FLEXIBLE_ARRAY_MEMBER (acc.at:16): ok     (0m0.993s 0m0.671s)
291. AC_C_INLINE (acc.at:17): ok     (0m0.963s 0m0.672s)
292. AC_C_PROTOTYPES (acc.at:18): ok     (0m0.963s 0m0.646s)
293. AC_C_RESTRICT (acc.at:19): ok     (0m0.967s 0m0.683s)
294. AC_C_STRINGIZE (acc.at:20): ok     (0m1.023s 0m0.723s)
295. AC_C_TYPEOF (acc.at:21): ok     (0m0.973s 0m0.674s)
296. AC_C_VARARRAYS (acc.at:22): ok     (0m0.993s 0m0.651s)
297. AC_OPENMP (acc.at:23): ok     (0m0.998s 0m0.709s)
298. AC_PROG_CC_C89 (acc.at:24): ok     (0m0.955s 0m0.654s)
299. AC_PROG_CC_C99 (acc.at:25): ok     (0m1.017s 0m0.661s)
300. AC_PROG_CC_C_O (acc.at:26): ok     (0m1.033s 0m0.705s)
301. AC_PROG_CC_STDC (acc.at:27): ok     (0m1.040s 0m0.647s)
302. AC_PROG_CPP_WERROR (acc.at:28): ok     (0m0.988s 0m0.724s)
303. AC_PROG_GCC_TRADITIONAL (acc.at:29): ok     (0m1.010s 0m0.745s)
304. AC_LANG_C (acc.at:32): ok     (0m1.786s 0m0.602s)
305. AC_LANG_CPLUSPLUS (acc.at:33): ok     (0m1.780s 0m0.603s)
306. AC_LANG_OBJC (acc.at:34): ok     (0m1.779s 0m0.611s)
307. GNU Fortran 77 (fortran.at:31): ok     (0m1.021s 0m0.686s)
308. GNU Fortran (fortran.at:61): ok     (0m1.070s 0m0.722s)
309. AC_OPENMP and Fortran 77 (fortran.at:84): ok     (0m0.998s 0m0.550s)
310. AC_OPENMP and Fortran (fortran.at:124): ok     (0m0.996s 0m0.549s)
311. AC_F77_DUMMY_MAIN usage (fortran.at:176): ok     (0m1.307s 0m0.822s)
312. AC_FC_DUMMY_MAIN usage (fortran.at:253): ok     (0m1.321s 0m0.836s)
313. AC_F77_MAIN usage (fortran.at:331): ok     (0m1.632s 0m1.089s)
314. AC_FC_MAIN usage (fortran.at:410): ok     (0m1.670s 0m1.089s)
315. AC_F77_FUNC usage (fortran.at:489): ok     (0m1.306s 0m0.830s)
316. AC_FC_FUNC usage (fortran.at:563): ok     (0m1.319s 0m0.814s)
317. AC_FC_SRCEXT usage (fortran.at:636): ok     (0m0.870s 0m0.579s)
318. AC_FC_PP_SRCEXT usage (fortran.at:721): ok     (0m1.565s 0m1.748s)
319. AC_FC_FREEFORM (fortran.at:821): ok     (0m0.632s 0m0.421s)
320. AC_FC_FREEFORM with AC_FC_SRCEXT (fortran.at:858): ok     (0m0.654s 0m0.442s)
321. AC_FC_FIXEDFORM (fortran.at:896): ok     (0m0.631s 0m0.386s)
322. AC_FC_FIXEDFORM with AC_FC_SRCEXT (fortran.at:934): ok     (0m0.642s 0m0.444s)
323. AC_FC_LINE_LENGTH (fortran.at:973): ok     (0m4.116s 0m2.816s)
324. AC_FC_CHECK_BOUNDS (fortran.at:1041): ok     (0m0.749s 0m0.461s)
325. AC_FC_MODULE_FLAG (fortran.at:1100): ok     (0m0.707s 0m0.504s)
326. AC_F77_IMPLICIT_NONE (acfortran.at:13): ok     (0m1.086s 0m0.738s)
327. AC_F77_MAIN (acfortran.at:14): ok     (0m1.671s 0m1.148s)
328. AC_F77_WRAPPERS (acfortran.at:15): ok     (0m1.553s 0m0.978s)
329. AC_FC_CHECK_BOUNDS (acfortran.at:16): ok     (0m1.130s 0m0.723s)
330. AC_FC_FIXEDFORM (acfortran.at:17): ok     (0m1.048s 0m0.669s)
331. AC_FC_FREEFORM (acfortran.at:18): ok     (0m1.010s 0m0.746s)
332. AC_FC_IMPLICIT_NONE (acfortran.at:19): ok     (0m1.099s 0m0.717s)
333. AC_FC_LINE_LENGTH (acfortran.at:20): ok     (0m1.070s 0m0.707s)
334. AC_FC_MAIN (acfortran.at:21): ok     (0m1.650s 0m1.156s)
335. AC_FC_MODULE_EXTENSION (acfortran.at:22): ok     (0m1.021s 0m0.702s)
336. AC_FC_MODULE_FLAG (acfortran.at:23): ok     (0m1.058s 0m0.709s)
337. AC_FC_MODULE_OUTPUT_FLAG (acfortran.at:24): ok     (0m1.078s 0m0.685s)
338. AC_FC_PP_DEFINE (acfortran.at:25): ok     (0m1.068s 0m0.714s)
339. AC_FC_WRAPPERS (acfortran.at:26): ok     (0m1.513s 0m1.002s)
340. AC_PROG_F77_C_O (acfortran.at:27): ok     (0m1.045s 0m0.707s)
341. AC_PROG_FC_C_O (acfortran.at:28): ok     (0m1.076s 0m0.666s)
342. AC_F77_NAME_MANGLING (acfortran.at:31): ok     (0m1.795s 0m0.596s)
343. AC_LANG_FORTRAN77 (acfortran.at:32): ok     (0m1.775s 0m0.602s)
344. Erlang (erlang.at:30): skipped (erlang.at:30)
345. AC_ERLANG_CHECK_LIB (erlang.at:52): skipped (erlang.at:52)
346. AC_ERLANG_SUBST_ROOT_DIR (erlang.at:72): skipped (erlang.at:72)
347. AC_ERLANG_SUBST_LIB_DIR (erlang.at:89): skipped (erlang.at:89)
348. AC_ERLANG_SUBST_INSTALL_LIB_DIR (erlang.at:106): ok     (0m0.606s 0m0.425s)
349. AC_ERLANG_SUBST_INSTALL_LIB_SUBDIR (erlang.at:114): ok     (0m0.611s 0m0.420s)
350. AC_ERLANG_SUBST_ERTS_VER (erlang.at:128): skipped (erlang.at:128)
351. Go (go.at:30): skipped (go.at:30)
352. AC_LANG_GO (acgo.at:15): ok     (0m1.804s 0m0.580s)
353. AC_CHECK_LIB (semantics.at:33): ok     (0m1.373s 0m0.963s)
354. AC_SEARCH_LIBS (semantics.at:77): ok     (0m1.063s 0m0.727s)
355. AC_SEARCH_LIBS (none needed) (semantics.at:90): ok     (0m0.999s 0m0.678s)
356. AC_CHECK_DECLS (semantics.at:105): ok     (0m1.208s 0m0.972s)
357. AC_CHECK_FUNCS (semantics.at:159): ok     (0m1.055s 0m0.710s)
358. AC_REPLACE_FUNCS (semantics.at:172): ok     (0m0.931s 0m0.608s)
359. AC_CHECK_HEADERS (semantics.at:213): ok     (0m1.228s 0m0.771s)
360. AC_CHECK_HEADERS (preprocessor test) (semantics.at:242): ok     (0m0.785s 0m0.441s)
361. AC_CHECK_HEADERS (compiler test) (semantics.at:269): ok     (0m0.748s 0m0.452s)
362. AC_CHECK_MEMBER (semantics.at:302): ok     (0m0.995s 0m0.773s)
363. AC_CHECK_MEMBERS (semantics.at:328): ok     (0m1.011s 0m0.782s)
364. AC_CHECK_ALIGNOF (semantics.at:343): ok     (0m1.537s 0m1.131s)
365. AC_CHECK_ALIGNOF (cross compile) (semantics.at:343): ok     (0m1.572s 0m1.106s)
366. AC_CHECK_ALIGNOF struct (semantics.at:360): ok     (0m1.498s 0m1.086s)
367. AC_CHECK_ALIGNOF struct (cross compile) (semantics.at:360): ok     (0m1.467s 0m1.087s)
368. AC_CHECK_SIZEOF (semantics.at:372): ok     (0m1.550s 0m1.120s)
369. AC_CHECK_SIZEOF (cross compile) (semantics.at:372): ok     (0m1.588s 0m1.150s)
370. AC_CHECK_SIZEOF struct (semantics.at:388): ok     (0m1.668s 0m1.122s)
371. AC_CHECK_SIZEOF struct (cross compile) (semantics.at:388): ok     (0m2.056s 0m1.517s)
372. AC_CHECK_TYPES (semantics.at:413): ok     (0m1.022s 0m0.762s)
373. AC_CHECK_TYPES: backward compatibility (semantics.at:427): ok     (0m0.193s 0m0.052s)
374. AC_CHECK_FILES (semantics.at:463): ok     (0m0.613s 0m0.446s)
375. AC_CHECK_PROG & AC_CHECK_PROGS (semantics.at:506): ok     (0m0.257s 0m0.117s)
376. AC_C_BIGENDIAN (semantics.at:555): ok     (0m2.524s 0m1.536s)
377. AC_PATH_PROG & AC_PATH_PROGS (semantics.at:604): ok     (0m0.247s 0m0.123s)
378. AC_PATH_PROGS_FEATURE_CHECK (semantics.at:646): ok     (0m0.256s 0m0.131s)
379. AC_PATH_XTRA (semantics.at:726): ok     (0m1.347s 0m0.985s)
380. AC_SYS_RESTARTABLE_SYSCALLS (semantics.at:744): ok     (0m1.511s 0m1.036s)
381. AC_FUNC_SETVBUF_REVERSED (semantics.at:745): ok     (0m0.598s 0m0.420s)
382. AC_FUNC_WAIT3 (semantics.at:746): ok     (0m1.445s 0m1.061s)
383. AC_ARG_ENABLE (acgeneral.at:13): ok     (0m0.608s 0m0.412s)
384. AC_ARG_PROGRAM (acgeneral.at:14): ok     (0m0.587s 0m0.441s)
385. AC_ARG_WITH (acgeneral.at:15): ok     (0m0.597s 0m0.426s)
386. AC_CHECK_DECLS_ONCE (acgeneral.at:16): ok     (0m1.430s 0m1.054s)
387. AC_EGREP_CPP (acgeneral.at:17): ok     (0m0.983s 0m0.765s)
388. AC_EGREP_HEADER (acgeneral.at:18): ok     (0m0.975s 0m0.776s)
389. AC_LIBOBJ (acgeneral.at:19): ok     (0m0.608s 0m0.424s)
390. AC_LIBSOURCES (acgeneral.at:20): ok     (0m0.598s 0m0.422s)
391. AC_PREFIX_DEFAULT (acgeneral.at:21): ok     (0m0.600s 0m0.420s)
392. AC_CHECKING (acgeneral.at:24): ok     (0m1.795s 0m0.578s)
393. AC_COMPILE_CHECK (acgeneral.at:25): ok     (0m2.349s 0m0.907s)
394. AC_ENABLE (acgeneral.at:26): ok     (0m1.816s 0m0.566s)
395. AC_FOREACH (acgeneral.at:27): ok     (0m1.798s 0m0.581s)
396. AC_MSG_RESULT_UNQUOTED (acgeneral.at:28): ok     (0m1.819s 0m0.565s)
397. AC_TRY_COMPILE (acgeneral.at:29): ok     (0m2.292s 0m0.913s)
398. AC_TRY_CPP (acgeneral.at:30): ok     (0m2.318s 0m0.988s)
399. AC_TRY_LINK (acgeneral.at:31): ok     (0m2.379s 0m0.879s)
400. AC_TRY_RUN (acgeneral.at:32): ok     (0m2.311s 0m0.934s)
401. AC_VALIDATE_CACHED_SYSTEM_TUPLE (acgeneral.at:33): ok     (0m1.785s 0m0.594s)
402. AC_WITH (acgeneral.at:34): ok     (0m1.814s 0m0.565s)
403. AC_OUTPUT_COMMANDS (acstatus.at:15): ok     (0m1.815s 0m0.571s)
404. AC_SYS_INTERPRETER (acspecific.at:13): ok     (0m0.596s 0m0.427s)
405. AC_SYS_LARGEFILE (acspecific.at:14): ok     (0m0.986s 0m0.677s)
406. AC_SYS_LONG_FILE_NAMES (acspecific.at:15): ok     (0m0.614s 0m0.435s)
407. AC_SYS_POSIX_TERMIOS (acspecific.at:16): ok     (0m1.012s 0m0.666s)
408. AC_AIX (acspecific.at:19): ok     (0m3.294s 0m1.565s)
409. AC_ARG_ARRAY (acspecific.at:20): ok     (0m1.779s 0m0.598s)
410. AC_DECL_SYS_SIGLIST (acspecific.at:21): ok     (0m2.326s 0m0.919s)
411. AC_DYNIX_SEQ (acspecific.at:22): ok     (0m2.329s 0m0.937s)
412. AC_HAVE_POUNDBANG (acspecific.at:23): ok     (0m1.814s 0m0.577s)
413. AC_IRIX_SUN (acspecific.at:24): ok     (0m2.404s 0m0.977s)
414. AC_ISC_POSIX (acspecific.at:25): ok     (0m2.291s 0m0.973s)
415. AC_MINIX (acspecific.at:26): ok     (0m3.273s 0m1.576s)
416. AC_SCO_INTL (acspecific.at:27): ok     (0m2.328s 0m0.963s)
417. AC_XENIX_DIR (acspecific.at:28): ok     (0m2.481s 0m1.069s)
418. AC_PROG_AWK (acprograms.at:13): ok     (0m0.624s 0m0.403s)
419. AC_PROG_FGREP (acprograms.at:14): ok     (0m0.613s 0m0.425s)
420. AC_PROG_INSTALL (acprograms.at:15): ok     (0m0.621s 0m0.418s)
421. AC_PROG_LEX (acprograms.at:16): ok     (0m1.827s 0m0.755s)
422. AC_PROG_LN_S (acprograms.at:17): ok     (0m0.594s 0m0.427s)
423. AC_PROG_MAKE_SET (acprograms.at:18): ok     (0m0.625s 0m0.412s)
424. AC_PROG_MKDIR_P (acprograms.at:19): ok     (0m0.605s 0m0.421s)
425. AC_PROG_RANLIB (acprograms.at:20): ok     (0m0.590s 0m0.433s)
426. AC_PROG_SED (acprograms.at:21): ok     (0m0.623s 0m0.401s)
427. AC_PROG_YACC (acprograms.at:22): ok     (0m0.620s 0m0.411s)
428. AC_CHECK_TOOL_PREFIX (acprograms.at:25): ok     (0m1.828s 0m0.552s)
429. AC_DECL_YYTEXT (acprograms.at:26): ok     (0m3.954s 0m1.108s)
430. AC_RSH (acprograms.at:27): ok     (0m1.818s 0m0.558s)
431. AC_CHECK_HEADERS_ONCE (acheaders.at:13): ok     (0m0.618s 0m0.400s)
432. AC_CHECK_HEADER_STDBOOL (acheaders.at:14): ok     (0m1.488s 0m1.075s)
433. AC_HEADER_ASSERT (acheaders.at:15): ok     (0m0.608s 0m0.414s)
434. AC_HEADER_MAJOR (acheaders.at:16): ok     (0m1.477s 0m0.994s)
435. AC_HEADER_RESOLV (acheaders.at:17): ok     (0m1.047s 0m0.801s)
436. AC_HEADER_STAT (acheaders.at:18): ok     (0m0.968s 0m0.664s)
437. AC_HEADER_STDBOOL (acheaders.at:19): ok     (0m1.485s 0m1.083s)
438. AC_HEADER_TIOCGWINSZ (acheaders.at:20): ok     (0m1.031s 0m0.728s)
439. AC_DIR_HEADER (acheaders.at:23): ok     (0m3.326s 0m1.621s)
440. AC_MEMORY_H (acheaders.at:24): ok     (0m3.124s 0m1.480s)
441. AC_UNISTD_H (acheaders.at:25): ok     (0m3.107s 0m1.466s)
442. AC_USG (acheaders.at:26): ok     (0m3.218s 0m1.484s)
443. AC_STRUCT_DIRENT_D_INO (actypes.at:13): ok     (0m1.060s 0m0.706s)
444. AC_STRUCT_DIRENT_D_TYPE (actypes.at:14): ok     (0m1.016s 0m0.747s)
445. AC_STRUCT_ST_BLOCKS (actypes.at:15): ok     (0m1.424s 0m1.057s)
446. AC_STRUCT_TIMEZONE (actypes.at:16): ok     (0m0.991s 0m0.712s)
447. AC_TYPE_INT16_T (actypes.at:17): ok     (0m1.477s 0m1.042s)
448. AC_TYPE_INT32_T (actypes.at:18): ok     (0m1.451s 0m1.070s)
449. AC_TYPE_INT64_T (actypes.at:19): ok     (0m1.490s 0m1.044s)
450. AC_TYPE_INT8_T (actypes.at:20): ok     (0m1.459s 0m1.064s)
451. AC_TYPE_INTMAX_T (actypes.at:21): ok     (0m1.526s 0m1.128s)
452. AC_TYPE_INTPTR_T (actypes.at:22): ok     (0m1.497s 0m1.034s)
453. AC_TYPE_LONG_DOUBLE (actypes.at:23): ok     (0m0.931s 0m0.677s)
454. AC_TYPE_LONG_DOUBLE_WIDER (actypes.at:24): ok     (0m0.974s 0m0.665s)
455. AC_TYPE_MODE_T (actypes.at:25): ok     (0m1.467s 0m1.056s)
456. AC_TYPE_OFF_T (actypes.at:26): ok     (0m1.492s 0m1.038s)
457. AC_TYPE_SSIZE_T (actypes.at:27): ok     (0m1.471s 0m1.056s)
458. AC_TYPE_UINT16_T (actypes.at:28): ok     (0m1.442s 0m1.039s)
459. AC_TYPE_UINT32_T (actypes.at:29): ok     (0m1.460s 0m1.015s)
460. AC_TYPE_UINT64_T (actypes.at:30): ok     (0m1.431s 0m1.035s)
461. AC_TYPE_UINT8_T (actypes.at:31): ok     (0m1.408s 0m1.060s)
462. AC_TYPE_UINTMAX_T (actypes.at:32): ok     (0m1.533s 0m1.058s)
463. AC_TYPE_UINTPTR_T (actypes.at:33): ok     (0m1.428s 0m1.105s)
464. AC_C_LONG_DOUBLE (actypes.at:36): ok     (0m2.301s 0m0.919s)
465. AC_INT_16_BITS (actypes.at:37): ok     (0m3.196s 0m1.559s)
466. AC_LONG_64_BITS (actypes.at:38): ok     (0m3.259s 0m1.496s)
467. AC_STRUCT_ST_BLKSIZE (actypes.at:39): ok     (0m3.146s 0m1.545s)
468. AC_STRUCT_ST_RDEV (actypes.at:40): ok     (0m3.163s 0m1.539s)
469. AC_TYPE_SIGNAL (actypes.at:41): ok     (0m2.354s 0m0.861s)
470. AM_TYPE_PTRDIFF_T (actypes.at:42): ok     (0m3.298s 0m1.518s)
471. AC_CHECK_FUNCS_ONCE (acfunctions.at:13): ok     (0m0.600s 0m0.415s)
472. AC_FUNC_CHOWN (acfunctions.at:14): ok     (0m1.490s 0m1.040s)
473. AC_FUNC_CLOSEDIR_VOID (acfunctions.at:15): ok     (0m1.519s 0m1.103s)
474. AC_FUNC_ERROR_AT_LINE (acfunctions.at:16): ok     (0m0.985s 0m0.678s)
475. AC_FUNC_FNMATCH (acfunctions.at:17): ok     (0m0.985s 0m0.679s)
476. AC_FUNC_FORK (acfunctions.at:18): ok     (0m1.682s 0m1.178s)
477. AC_FUNC_FSEEKO (acfunctions.at:19): ok     (0m1.011s 0m0.672s)
478. AC_FUNC_GETGROUPS (acfunctions.at:20): ok     (0m1.668s 0m1.129s)
479. AC_FUNC_GETMNTENT (acfunctions.at:21): ok     (0m1.003s 0m0.673s)
480. AC_FUNC_GETPGRP (acfunctions.at:22): ok     (0m1.438s 0m1.033s)
481. AC_FUNC_LSTAT (acfunctions.at:23): ok     (0m1.535s 0m1.057s)
482. AC_FUNC_MALLOC (acfunctions.at:24): ok     (0m1.448s 0m1.051s)
483. AC_FUNC_MBRTOWC (acfunctions.at:25): ok     (0m0.993s 0m0.686s)
484. AC_FUNC_MEMCMP (acfunctions.at:26): ok     (0m1.442s 0m1.056s)
485. AC_FUNC_MKTIME (acfunctions.at:27): ok     (0m1.603s 0m1.129s)
486. AC_FUNC_MMAP (acfunctions.at:28): ok     (0m1.546s 0m1.153s)
487. AC_FUNC_OBSTACK (acfunctions.at:29): ok     (0m1.469s 0m1.032s)
488. AC_FUNC_REALLOC (acfunctions.at:30): ok     (0m1.441s 0m1.049s)
489. AC_FUNC_SELECT_ARGTYPES (acfunctions.at:31): ok     (0m1.537s 0m1.124s)
490. AC_FUNC_SETPGRP (acfunctions.at:32): ok     (0m1.409s 0m1.061s)
491. AC_FUNC_STAT (acfunctions.at:33): ok     (0m1.527s 0m1.067s)
492. AC_FUNC_STRCOLL (acfunctions.at:34): ok     (0m1.413s 0m1.073s)
493. AC_FUNC_STRERROR_R (acfunctions.at:35): ok     (0m1.536s 0m1.077s)
494. AC_FUNC_STRFTIME (acfunctions.at:36): ok     (0m0.968s 0m0.709s)
495. AC_FUNC_STRNLEN (acfunctions.at:37): ok     (0m1.556s 0m1.213s)
496. AC_FUNC_STRTOD (acfunctions.at:38): ok     (0m1.466s 0m1.028s)
497. AC_FUNC_STRTOLD (acfunctions.at:39): ok     (0m0.980s 0m0.678s)
498. AC_FUNC_UTIME_NULL (acfunctions.at:40): ok     (0m1.495s 0m1.075s)
499. AC_FUNC_VPRINTF (acfunctions.at:41): ok     (0m1.050s 0m0.697s)
500. AC_HAVE_LIBRARY (aclibs.at:15): ok     (0m2.303s 0m0.887s)
502. shtool (foreign.at:92): ok     (0m0.448s 0m0.405s)
503. autoscan (autoscan.at:20): ok     (0m0.221s 0m0.052s)
testsuite: ending at: Fri Apr 28 21:15:01 -00 2017
testsuite: test suite duration: 0h 15m 6s

## ------------- ##
## Test results. ##
## ------------- ##

ERROR: 493 tests were run,
6 failed (4 expected failures).
10 tests were skipped.

## ------------------------ ##
## Summary of the failures. ##
## ------------------------ ##
Failed tests:
GNU Autoconf 2.69 test suite test groups:

 NUM: FILE-NAME:LINE     TEST-GROUP-NAME
      KEYWORDS

  38: tools.at:1278      autotools and whitespace in file names
 501: foreign.at:25      Libtool

Skipped tests:
GNU Autoconf 2.69 test suite test groups:

 NUM: FILE-NAME:LINE     TEST-GROUP-NAME
      KEYWORDS

  35: tools.at:1162      autom4te preselections
 137: autotest.at:366    Syntax error
      autotest
 207: autotest.at:1476   parallel syntax error
      autotest
 224: base.at:322        AC_CACHE_CHECK
      config_site
 344: erlang.at:30       Erlang
      erlang
 345: erlang.at:52       AC_ERLANG_CHECK_LIB
      erlang
 346: erlang.at:72       AC_ERLANG_SUBST_ROOT_DIR
      erlang
 347: erlang.at:89       AC_ERLANG_SUBST_LIB_DIR
      erlang
 350: erlang.at:128      AC_ERLANG_SUBST_ERTS_VER
      erlang
 351: go.at:30           Go

## ---------------------- ##
## Detailed failed tests. ##
## ---------------------- ##

#                             -*- compilation -*-
38. tools.at:1278: testing autotools and whitespace in file names ...
./tools.at:1281: aclocal --version || exit 77
stderr:
stdout:
aclocal (GNU automake) 1.15
Copyright (C) 2014 Free Software Foundation, Inc.
License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl-2.0.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Tom Tromey <tro...@redhat.com>
       and Alexandre Duret-Lutz <a...@gnu.org>.
./tools.at:1297: mkdir "$dir" "$TMPDIR" && touch "$file.in" || exit 77
./tools.at:1310: autoheader -B "$dir" "$file.in"
--- /dev/null	2017-04-23 16:19:22.434000368 +0000
+++ /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests/testsuite.dir/at-groups/38/stderr	2017-04-28 21:00:36.523807621 +0000
@@ -0,0 +1,2 @@
+do " tmp dir with  funny ' $x & #! name /ahV118Zr/traces.pl" failed, '.' is no longer in @INC; did you mean do "./ tmp dir with  funny ' $x & #! name /ahV118Zr/traces.pl"? at /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/bin/autoheader line 186.
+autoheader: error: AC_CONFIG_HEADERS not found in  file with  funny ' $x & #! name .in
./tools.at:1310: exit code was 1, expected 0
38. tools.at:1278: 38. autotools and whitespace in file names (tools.at:1278): FAILED (tools.at:1310)

#                             -*- compilation -*-
501. foreign.at:25: testing Libtool ...
./foreign.at:28: libtoolize --version || exit 77
stderr:
stdout:
libtoolize (GNU libtool) 2.4.6
Written by Gary V. Vaughan <g...@gnu.org>, 2003

Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
./foreign.at:32:
case `libtoolize --version |
      sed -n '/^.* \([0-9][0-9.a-z]*\)$/{
		s//\1/
		p
		q
	}'` in
  0.*    ) exit 77;;
  1.*    ) exit 77;;
esac
stderr:
stdout:
./foreign.at:52: libtoolize -i
stderr:
stdout:
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, '.'.
libtoolize: linking file './config.guess'
libtoolize: linking file './config.sub'
libtoolize: linking file './install-sh'
libtoolize: linking file './ltmain.sh'
libtoolize: You should add the contents of the following files to 'aclocal.m4':
libtoolize:   '/usr/share/aclocal/libtool.m4'
libtoolize:   '/usr/share/aclocal/ltoptions.m4'
libtoolize:   '/usr/share/aclocal/ltsugar.m4'
libtoolize:   '/usr/share/aclocal/ltversion.m4'
libtoolize:   '/usr/share/aclocal/lt~obsolete.m4'
libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
libtoolize: and rerunning libtoolize and aclocal.
libtoolize: Consider adding '-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
./foreign.at:55: ./config.guess || exit 77
stderr:
stdout:
x86_64-pc-linux-gnu
./foreign.at:60: sed -n "s,^.*\`\\(/[^']*\\)'.*,\\1,p" stdout
stdout:
./foreign.at:61: test -f "`sed -n 1p stdout`"
./foreign.at:61: exit code was 1, expected 0
501. foreign.at:25: 501. Libtool (foreign.at:25): FAILED (foreign.at:61)


## ------------- ##
## ../config.log ##
## ------------- ##
| This file contains any messages produced by compilers while
| running configure, to aid debugging if configure makes a mistake.
| 
| It was created by GNU Autoconf configure 2.69, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   $ ./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --libdir=/usr/lib64 --program-suffix=-2.69
| 
| ## --------- ##
| ## Platform. ##
| ## --------- ##
| 
| hostname = ember
| uname -m = x86_64
| uname -r = 4.9.6-gentoo-r1
| uname -s = Linux
| uname -v = #24 SMP Wed Feb 22 00:02:49 NZDT 2017
| 
| /usr/bin/uname -p = Intel(R) Core(TM)2 Duo CPU E6750 @ 2.66GHz
| /bin/uname -X     = unknown
| 
| /bin/arch              = unknown
| /usr/bin/arch -k       = unknown
| /usr/convex/getsysinfo = unknown
| /usr/bin/hostinfo      = unknown
| /bin/machine           = unknown
| /usr/bin/oslevel       = unknown
| /bin/universe          = unknown
| 
| PATH: /usr/lib/portage/python2.7/ebuild-helpers/xattr
| PATH: /usr/lib/portage/python2.7/ebuild-helpers
| PATH: /usr/local/sbin
| PATH: /usr/local/bin
| PATH: /usr/sbin
| PATH: /usr/bin
| PATH: /sbin
| PATH: /bin
| PATH: /opt/bin
| PATH: /usr/x86_64-pc-linux-gnu/gcc-bin/5.4.0
| 
| 
| ## ----------- ##
| ## Core tests. ##
| ## ----------- ##
| 
| configure:1796: checking for a BSD-compatible install
| configure:1864: result: /usr/lib/portage/python2.7/ebuild-helpers/xattr/install -c
| configure:1875: checking whether build environment is sane
| configure:1925: result: yes
| configure:2066: checking for a thread-safe mkdir -p
| configure:2105: result: /bin/mkdir -p
| configure:2118: checking for gawk
| configure:2134: found /usr/bin/gawk
| configure:2145: result: gawk
| configure:2156: checking whether make sets $(MAKE)
| configure:2178: result: yes
| configure:2263: checking build system type
| configure:2277: result: x86_64-pc-linux-gnu
| configure:2297: checking host system type
| configure:2310: result: x86_64-pc-linux-gnu
| configure:2337: autobuild project... GNU Autoconf
| configure:2343: autobuild revision... 2.69
| configure:2348: autobuild hostname... ember
| configure:2359: autobuild timestamp... 20170428T205949Z
| configure:2387: checking whether /bin/sh -n is known to work
| configure:2406: result: yes
| configure:2410: checking for characters that cannot appear in file names
| configure:2430: result: none
| configure:2436: checking whether directories can have trailing spaces
| configure:2450: result: yes
| configure:2461: checking for expr
| configure:2479: found /usr/bin/expr
| configure:2491: result: /usr/bin/expr
| configure:2510: checking for GNU M4 that supports accurate traces
| configure:2559: result: /usr/bin/m4
| configure:2562: checking whether /usr/bin/m4 accepts --gnu
| configure:2572: result: yes
| configure:2589: checking how m4 supports trace files
| configure:2599: result: --debugfile
| configure:2623: checking for perl
| configure:2641: found /usr/bin/perl
| configure:2654: result: /usr/bin/perl
| configure:2673: checking whether /usr/bin/perl Fcntl::flock is implemented
| configure:2687: result: yes
| configure:2705: checking for emacs
| configure:2732: result: no
| configure:2788: checking for emacs
| configure:2815: result: no
| configure:2839: checking where .elc files should go
| configure:2868: result: ${datadir}/emacs/site-lisp
| configure:2881: checking for grep that handles long lines and -e
| configure:2939: result: /bin/grep
| configure:2944: checking for egrep
| configure:3006: result: /bin/grep -E
| configure:3011: checking for a sed that does not truncate output
| configure:3075: result: /bin/sed
| configure:3085: checking whether make is case sensitive
| configure:3100: result: yes
| configure:3279: creating ./config.status
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by GNU Autoconf config.status 2.69, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status 
| 
| on ember
| 
| config.status:797: creating tests/Makefile
| config.status:797: creating tests/atlocal
| config.status:797: creating man/Makefile
| config.status:797: creating lib/emacs/Makefile
| config.status:797: creating Makefile
| config.status:797: creating doc/Makefile
| config.status:797: creating lib/Makefile
| config.status:797: creating lib/Autom4te/Makefile
| config.status:797: creating lib/autoscan/Makefile
| config.status:797: creating lib/m4sugar/Makefile
| config.status:797: creating lib/autoconf/Makefile
| config.status:797: creating lib/autotest/Makefile
| config.status:797: creating bin/Makefile
| config.status:1000: executing tests/atconfig commands
| 
| ## ---------------- ##
| ## Cache variables. ##
| ## ---------------- ##
| 
| ac_cv_build=x86_64-pc-linux-gnu
| ac_cv_dir_trailing_space=yes
| ac_cv_env_EMACSLOADPATH_set=
| ac_cv_env_EMACSLOADPATH_value=
| ac_cv_env_EMACS_set=set
| ac_cv_env_EMACS_value=no
| ac_cv_env_M4_set=
| ac_cv_env_M4_value=
| ac_cv_env_build_alias_set=set
| ac_cv_env_build_alias_value=x86_64-pc-linux-gnu
| ac_cv_env_host_alias_set=set
| ac_cv_env_host_alias_value=x86_64-pc-linux-gnu
| ac_cv_env_target_alias_set=
| ac_cv_env_target_alias_value=
| ac_cv_host=x86_64-pc-linux-gnu
| ac_cv_path_EGREP='/bin/grep -E'
| ac_cv_path_EXPR=/usr/bin/expr
| ac_cv_path_GREP=/bin/grep
| ac_cv_path_M4=/usr/bin/m4
| ac_cv_path_PERL=/usr/bin/perl
| ac_cv_path_SED=/bin/sed
| ac_cv_path_install='/usr/lib/portage/python2.7/ebuild-helpers/xattr/install -c'
| ac_cv_path_mkdir=/bin/mkdir
| ac_cv_perl_flock_implemented=yes
| ac_cv_prog_AWK=gawk
| ac_cv_prog_EMACS=no
| ac_cv_prog_TEST_EMACS=no
| ac_cv_prog_gnu_m4_debugfile=--debugfile
| ac_cv_prog_gnu_m4_gnu=yes
| ac_cv_prog_make_make_case=yes
| ac_cv_prog_make_make_set=yes
| ac_cv_sh_n_works=yes
| ac_cv_unsupported_fs_chars=
| am_cv_lispdir='${datadir}/emacs/site-lisp'
| 
| ## ----------------- ##
| ## Output variables. ##
| ## ----------------- ##
| 
| ACLOCAL='${SHELL} /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/build-aux/missing --run aclocal-1.11'
| AMTAR='${SHELL} /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/build-aux/missing --run tar'
| AUTOCONF='${SHELL} /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/build-aux/missing --run autoconf'
| AUTOHEADER='${SHELL} /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/build-aux/missing --run autoheader'
| AUTOMAKE='${SHELL} /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/build-aux/missing --run automake-1.11'
| AWK='gawk'
| CYGPATH_W='echo'
| DEFS='-DPACKAGE_NAME=\"GNU\ Autoconf\" -DPACKAGE_TARNAME=\"autoconf\" -DPACKAGE_VERSION=\"2.69\" -DPACKAGE_STRING=\"GNU\ Autoconf\ 2.69\" -DPACKAGE_BUGREPORT=\"bug-autoconf@gnu.org\" -DPACKAGE_URL=\"http://www.gnu.org/software/autoconf/\"; -DPACKAGE=\"autoconf\" -DVERSION=\"2.69\"'
| ECHO_C=''
| ECHO_N='-n'
| ECHO_T=''
| EGREP='/bin/grep -E'
| EMACS='no'
| EMACSLOADPATH=''
| EXPR='/usr/bin/expr'
| GREP='/bin/grep'
| HELP2MAN='${SHELL} /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/build-aux/missing --run help2man'
| INSTALL_DATA='${INSTALL} -m 644'
| INSTALL_PROGRAM='${INSTALL}'
| INSTALL_SCRIPT='${INSTALL}'
| INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
| LIBOBJS=''
| LIBS=''
| LTLIBOBJS=''
| M4='/usr/bin/m4'
| M4_DEBUGFILE='--debugfile'
| M4_GNU='--gnu'
| MAKEINFO='${SHELL} /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/build-aux/missing --run makeinfo'
| MAKE_CASE_SENSITIVE_FALSE='#'
| MAKE_CASE_SENSITIVE_TRUE=''
| MKDIR_P='/bin/mkdir -p'
| PACKAGE='autoconf'
| PACKAGE_BUGREPORT='bug-autoconf@gnu.org'
| PACKAGE_NAME='GNU Autoconf'
| PACKAGE_STRING='GNU Autoconf 2.69'
| PACKAGE_TARNAME='autoconf'
| PACKAGE_URL='http://www.gnu.org/software/autoconf/'
| PACKAGE_VERSION='2.69'
| PATH_SEPARATOR=':'
| PERL='/usr/bin/perl'
| PERL_FLOCK='yes'
| SED='/bin/sed'
| SET_MAKE=''
| SHELL='/bin/sh'
| STRIP=''
| TEST_EMACS='no'
| VERSION='2.69'
| ac_cv_dir_trailing_space='yes'
| ac_cv_sh_n_works='yes'
| ac_cv_unsupported_fs_chars=''
| am__isrc=''
| am__leading_dot='.'
| am__tar='${AMTAR} chof - "$$tardir"'
| am__untar='${AMTAR} xf -'
| bindir='${exec_prefix}/bin'
| build='x86_64-pc-linux-gnu'
| build_alias='x86_64-pc-linux-gnu'
| build_cpu='x86_64'
| build_os='linux-gnu'
| build_vendor='pc'
| datadir='/usr/share'
| datarootdir='${prefix}/share'
| docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
| dvidir='${docdir}'
| exec_prefix='${prefix}'
| host='x86_64-pc-linux-gnu'
| host_alias='x86_64-pc-linux-gnu'
| host_cpu='x86_64'
| host_os='linux-gnu'
| host_vendor='pc'
| htmldir='${docdir}'
| includedir='${prefix}/include'
| infodir='/usr/share/info'
| install_sh='${SHELL} /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/build-aux/install-sh'
| libdir='/usr/lib64'
| libexecdir='${exec_prefix}/libexec'
| lispdir='${datadir}/emacs/site-lisp'
| localedir='${datarootdir}/locale'
| localstatedir='/var/lib'
| mandir='/usr/share/man'
| mkdir_p='/bin/mkdir -p'
| oldincludedir='/usr/include'
| pdfdir='${docdir}'
| prefix='/usr'
| program_transform_name='s&$$&-2.69&'
| psdir='${docdir}'
| sbindir='${exec_prefix}/sbin'
| sharedstatedir='${prefix}/com'
| sysconfdir='/etc'
| target_alias=''
| 
| ## ----------- ##
| ## confdefs.h. ##
| ## ----------- ##
| 
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Autoconf"
| #define PACKAGE_TARNAME "autoconf"
| #define PACKAGE_VERSION "2.69"
| #define PACKAGE_STRING "GNU Autoconf 2.69"
| #define PACKAGE_BUGREPORT "bug-autoconf@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/autoconf/";
| #define PACKAGE "autoconf"
| #define VERSION "2.69"
| 
| configure: exit 0

 * Package:    sys-devel/autoconf-2.69-r3
 * Repository: gentoo
 * Maintainer: base-sys...@gentoo.org
 * USE:        abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
 * FEATURES:   preserve-libs sandbox test userpriv usersandbox
>>> Unpacking source...
>>> Unpacking autoconf-2.69.tar.xz to /var/tmp/portage/sys-devel/autoconf-2.69-r3/work
>>> Source unpacked in /var/tmp/portage/sys-devel/autoconf-2.69-r3/work
>>> Preparing source in /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69 ...
 * Applying autoconf-2.69-perl-5.26.patch ...
 [ ok ]
>>> Source prepared.
>>> Configuring source in /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69 ...
 * econf: updating autoconf-2.69/build-aux/config.sub with /usr/share/gnuconfig/config.sub
 * econf: updating autoconf-2.69/build-aux/config.guess with /usr/share/gnuconfig/config.guess
./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --libdir=/usr/lib64 --program-suffix=-2.69
checking for a BSD-compatible install... /usr/lib/portage/python2.7/ebuild-helpers/xattr/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
configure: autobuild project... GNU Autoconf
configure: autobuild revision... 2.69
configure: autobuild hostname... ember
configure: autobuild timestamp... 20170428T205949Z
checking whether /bin/sh -n is known to work... yes
checking for characters that cannot appear in file names... none
checking whether directories can have trailing spaces... yes
checking for expr... /usr/bin/expr
checking for GNU M4 that supports accurate traces... /usr/bin/m4
checking whether /usr/bin/m4 accepts --gnu... yes
checking how m4 supports trace files... --debugfile
checking for perl... /usr/bin/perl
checking whether /usr/bin/perl Fcntl::flock is implemented... yes
checking for emacs... no
checking for emacs... no
checking where .elc files should go... ${datadir}/emacs/site-lisp
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking whether make is case sensitive... yes
configure: creating ./config.status
config.status: creating tests/Makefile
config.status: creating tests/atlocal
config.status: creating man/Makefile
config.status: creating lib/emacs/Makefile
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating lib/Makefile
config.status: creating lib/Autom4te/Makefile
config.status: creating lib/autoscan/Makefile
config.status: creating lib/m4sugar/Makefile
config.status: creating lib/autoconf/Makefile
config.status: creating lib/autotest/Makefile
config.status: creating bin/Makefile
config.status: executing tests/atconfig commands
>>> Source configured.
>>> Compiling source in /var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69 ...
make -j3 
make  all-recursive
make[1]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69'
Making all in bin
make[2]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/bin'
rm -f autom4te autom4te.tmp
cd ../lib && make  autom4te.cfg
cd ../lib/m4sugar && make  version.m4
srcdir=''; \
  test -f ./autom4te.in || srcdir=./; \
  sed -e 's|@SHELL[@]|/bin/sh|g' -e 's|@PERL[@]|/usr/bin/perl|g' -e 's|@PERL_FLOCK[@]|yes|g' -e 's|@bindir[@]|/usr/bin|g' -e 's|@pkgdatadir[@]|/usr/share/autoconf-2.69|g' -e 's|@prefix[@]|/usr|g' -e 's|@autoconf-name[@]|'`echo autoconf | sed 's&$&-2.69&'`'|g' -e 's|@autoheader-name[@]|'`echo autoheader | sed 's&$&-2.69&'`'|g' -e 's|@autom4te-name[@]|'`echo autom4te | sed 's&$&-2.69&'`'|g' -e 's|@M4[@]|/usr/bin/m4|g' -e 's|@M4_DEBUGFILE[@]|--debugfile|g' -e 's|@M4_GNU[@]|--gnu|g' -e 's|@AWK[@]|gawk|g' -e 's|@RELEASE_YEAR[@]|'`sed 's/^\([0-9][0-9][0-9][0-9]\).*/\1/;q' ../ChangeLog`'|g' -e 's|@VERSION[@]|2.69|g' -e 's|@PACKAGE_NAME[@]|GNU Autoconf|g' -e 's|@configure_input[@]|Generated from autom4te.in; do not edit by hand.|g' ${srcdir}autom4te.in >autom4te.tmp
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib'
rm -f autom4te.cfg autom4te.tmp
sed -e 's|@SHELL[@]|/bin/sh|g' -e 's|@PERL[@]|/usr/bin/perl|g' -e 's|@bindir[@]|/usr/bin|g' -e 's|@pkgdatadir[@]|/usr/share/autoconf-2.69|g' -e 's|@prefix[@]|/usr|g' -e 's|@autoconf-name[@]|'`echo autoconf | sed 's&$&-2.69&'`'|g' -e 's|@autoheader-name[@]|'`echo autoheader | sed 's&$&-2.69&'`'|g' -e 's|@autom4te-name[@]|'`echo autom4te | sed 's&$&-2.69&'`'|g' -e 's|@M4[@]|/usr/bin/m4|g' -e 's|@AWK[@]|gawk|g' -e 's|@VERSION[@]|2.69|g' -e 's|@PACKAGE_NAME[@]|GNU Autoconf|g' ./autom4te.in >autom4te.tmp
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/m4sugar'
:;{ \
  echo '# This file is part of -*- Autoconf -*-.' && \
  echo '# Version of Autoconf.' && \
  echo '# Copyright (C) 1999, 2000, 2001, 2002, 2006, 2007, 2009' && \
  echo '# Free Software Foundation, Inc.' && \
  echo  &&\
  echo 'm4_define([m4_PACKAGE_NAME],      [GNU Autoconf])' && \
  echo 'm4_define([m4_PACKAGE_TARNAME],   [autoconf])' && \
  echo 'm4_define([m4_PACKAGE_VERSION],   [2.69])' && \
  echo 'm4_define([m4_PACKAGE_STRING],    [GNU Autoconf 2.69])' && \
  echo 'm4_define([m4_PACKAGE_BUGREPORT], [bug-autoconf@gnu.org])' && \
  echo 'm4_define([m4_PACKAGE_URL],       [http://www.gnu.org/software/autoconf/])' && \
  echo 'm4_define([m4_PACKAGE_YEAR],      ['`sed 's/^\([0-9][0-9][0-9][0-9]\).*/\1/;q' ../../ChangeLog`'])'; \
} > version.m4-t
chmod a-w autom4te.tmp
mv version.m4-t version.m4
mv autom4te.tmp autom4te.cfg
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/m4sugar'
rm -f autoheader autoheader.tmp
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib'
rm -f autoreconf autoreconf.tmp
srcdir=''; \
  test -f ./autoheader.in || srcdir=./; \
  sed -e 's|@SHELL[@]|/bin/sh|g' -e 's|@PERL[@]|/usr/bin/perl|g' -e 's|@PERL_FLOCK[@]|yes|g' -e 's|@bindir[@]|/usr/bin|g' -e 's|@pkgdatadir[@]|/usr/share/autoconf-2.69|g' -e 's|@prefix[@]|/usr|g' -e 's|@autoconf-name[@]|'`echo autoconf | sed 's&$&-2.69&'`'|g' -e 's|@autoheader-name[@]|'`echo autoheader | sed 's&$&-2.69&'`'|g' -e 's|@autom4te-name[@]|'`echo autom4te | sed 's&$&-2.69&'`'|g' -e 's|@M4[@]|/usr/bin/m4|g' -e 's|@M4_DEBUGFILE[@]|--debugfile|g' -e 's|@M4_GNU[@]|--gnu|g' -e 's|@AWK[@]|gawk|g' -e 's|@RELEASE_YEAR[@]|'`sed 's/^\([0-9][0-9][0-9][0-9]\).*/\1/;q' ../ChangeLog`'|g' -e 's|@VERSION[@]|2.69|g' -e 's|@PACKAGE_NAME[@]|GNU Autoconf|g' -e 's|@configure_input[@]|Generated from autoheader.in; do not edit by hand.|g' ${srcdir}autoheader.in >autoheader.tmp
srcdir=''; \
  test -f ./autoreconf.in || srcdir=./; \
  sed -e 's|@SHELL[@]|/bin/sh|g' -e 's|@PERL[@]|/usr/bin/perl|g' -e 's|@PERL_FLOCK[@]|yes|g' -e 's|@bindir[@]|/usr/bin|g' -e 's|@pkgdatadir[@]|/usr/share/autoconf-2.69|g' -e 's|@prefix[@]|/usr|g' -e 's|@autoconf-name[@]|'`echo autoconf | sed 's&$&-2.69&'`'|g' -e 's|@autoheader-name[@]|'`echo autoheader | sed 's&$&-2.69&'`'|g' -e 's|@autom4te-name[@]|'`echo autom4te | sed 's&$&-2.69&'`'|g' -e 's|@M4[@]|/usr/bin/m4|g' -e 's|@M4_DEBUGFILE[@]|--debugfile|g' -e 's|@M4_GNU[@]|--gnu|g' -e 's|@AWK[@]|gawk|g' -e 's|@RELEASE_YEAR[@]|'`sed 's/^\([0-9][0-9][0-9][0-9]\).*/\1/;q' ../ChangeLog`'|g' -e 's|@VERSION[@]|2.69|g' -e 's|@PACKAGE_NAME[@]|GNU Autoconf|g' -e 's|@configure_input[@]|Generated from autoreconf.in; do not edit by hand.|g' ${srcdir}autoreconf.in >autoreconf.tmp
chmod +x autom4te.tmp
chmod a-w autom4te.tmp
mv autom4te.tmp autom4te
rm -f ifnames ifnames.tmp
srcdir=''; \
  test -f ./ifnames.in || srcdir=./; \
  sed -e 's|@SHELL[@]|/bin/sh|g' -e 's|@PERL[@]|/usr/bin/perl|g' -e 's|@PERL_FLOCK[@]|yes|g' -e 's|@bindir[@]|/usr/bin|g' -e 's|@pkgdatadir[@]|/usr/share/autoconf-2.69|g' -e 's|@prefix[@]|/usr|g' -e 's|@autoconf-name[@]|'`echo autoconf | sed 's&$&-2.69&'`'|g' -e 's|@autoheader-name[@]|'`echo autoheader | sed 's&$&-2.69&'`'|g' -e 's|@autom4te-name[@]|'`echo autom4te | sed 's&$&-2.69&'`'|g' -e 's|@M4[@]|/usr/bin/m4|g' -e 's|@M4_DEBUGFILE[@]|--debugfile|g' -e 's|@M4_GNU[@]|--gnu|g' -e 's|@AWK[@]|gawk|g' -e 's|@RELEASE_YEAR[@]|'`sed 's/^\([0-9][0-9][0-9][0-9]\).*/\1/;q' ../ChangeLog`'|g' -e 's|@VERSION[@]|2.69|g' -e 's|@PACKAGE_NAME[@]|GNU Autoconf|g' -e 's|@configure_input[@]|Generated from ifnames.in; do not edit by hand.|g' ${srcdir}ifnames.in >ifnames.tmp
chmod +x autoreconf.tmp
chmod a-w autoreconf.tmp
chmod +x autoheader.tmp
mv autoreconf.tmp autoreconf
chmod a-w autoheader.tmp
rm -f autoscan autoscan.tmp
mv autoheader.tmp autoheader
srcdir=''; \
  test -f ./autoscan.in || srcdir=./; \
  sed -e 's|@SHELL[@]|/bin/sh|g' -e 's|@PERL[@]|/usr/bin/perl|g' -e 's|@PERL_FLOCK[@]|yes|g' -e 's|@bindir[@]|/usr/bin|g' -e 's|@pkgdatadir[@]|/usr/share/autoconf-2.69|g' -e 's|@prefix[@]|/usr|g' -e 's|@autoconf-name[@]|'`echo autoconf | sed 's&$&-2.69&'`'|g' -e 's|@autoheader-name[@]|'`echo autoheader | sed 's&$&-2.69&'`'|g' -e 's|@autom4te-name[@]|'`echo autom4te | sed 's&$&-2.69&'`'|g' -e 's|@M4[@]|/usr/bin/m4|g' -e 's|@M4_DEBUGFILE[@]|--debugfile|g' -e 's|@M4_GNU[@]|--gnu|g' -e 's|@AWK[@]|gawk|g' -e 's|@RELEASE_YEAR[@]|'`sed 's/^\([0-9][0-9][0-9][0-9]\).*/\1/;q' ../ChangeLog`'|g' -e 's|@VERSION[@]|2.69|g' -e 's|@PACKAGE_NAME[@]|GNU Autoconf|g' -e 's|@configure_input[@]|Generated from autoscan.in; do not edit by hand.|g' ${srcdir}autoscan.in >autoscan.tmp
rm -f autoupdate autoupdate.tmp
srcdir=''; \
  test -f ./autoupdate.in || srcdir=./; \
  sed -e 's|@SHELL[@]|/bin/sh|g' -e 's|@PERL[@]|/usr/bin/perl|g' -e 's|@PERL_FLOCK[@]|yes|g' -e 's|@bindir[@]|/usr/bin|g' -e 's|@pkgdatadir[@]|/usr/share/autoconf-2.69|g' -e 's|@prefix[@]|/usr|g' -e 's|@autoconf-name[@]|'`echo autoconf | sed 's&$&-2.69&'`'|g' -e 's|@autoheader-name[@]|'`echo autoheader | sed 's&$&-2.69&'`'|g' -e 's|@autom4te-name[@]|'`echo autom4te | sed 's&$&-2.69&'`'|g' -e 's|@M4[@]|/usr/bin/m4|g' -e 's|@M4_DEBUGFILE[@]|--debugfile|g' -e 's|@M4_GNU[@]|--gnu|g' -e 's|@AWK[@]|gawk|g' -e 's|@RELEASE_YEAR[@]|'`sed 's/^\([0-9][0-9][0-9][0-9]\).*/\1/;q' ../ChangeLog`'|g' -e 's|@VERSION[@]|2.69|g' -e 's|@PACKAGE_NAME[@]|GNU Autoconf|g' -e 's|@configure_input[@]|Generated from autoupdate.in; do not edit by hand.|g' ${srcdir}autoupdate.in >autoupdate.tmp
chmod +x ifnames.tmp
chmod a-w ifnames.tmp
mv ifnames.tmp ifnames
autom4te_perllibdir='..'/lib AUTOM4TE_CFG='../lib/autom4te.cfg'         ../bin/autom4te -B '..'/lib -B '..'/lib         --language M4sh --cache '' --melt ./autoconf.as -o autoconf.in
chmod +x autoscan.tmp
chmod a-w autoscan.tmp
mv autoscan.tmp autoscan
chmod +x autoupdate.tmp
chmod a-w autoupdate.tmp
mv autoupdate.tmp autoupdate
rm -f autoconf autoconf.tmp
srcdir=''; \
  test -f ./autoconf.in || srcdir=./; \
  sed -e 's|@SHELL[@]|/bin/sh|g' -e 's|@PERL[@]|/usr/bin/perl|g' -e 's|@PERL_FLOCK[@]|yes|g' -e 's|@bindir[@]|/usr/bin|g' -e 's|@pkgdatadir[@]|/usr/share/autoconf-2.69|g' -e 's|@prefix[@]|/usr|g' -e 's|@autoconf-name[@]|'`echo autoconf | sed 's&$&-2.69&'`'|g' -e 's|@autoheader-name[@]|'`echo autoheader | sed 's&$&-2.69&'`'|g' -e 's|@autom4te-name[@]|'`echo autom4te | sed 's&$&-2.69&'`'|g' -e 's|@M4[@]|/usr/bin/m4|g' -e 's|@M4_DEBUGFILE[@]|--debugfile|g' -e 's|@M4_GNU[@]|--gnu|g' -e 's|@AWK[@]|gawk|g' -e 's|@RELEASE_YEAR[@]|'`sed 's/^\([0-9][0-9][0-9][0-9]\).*/\1/;q' ../ChangeLog`'|g' -e 's|@VERSION[@]|2.69|g' -e 's|@PACKAGE_NAME[@]|GNU Autoconf|g' -e 's|@configure_input[@]|Generated from autoconf.in; do not edit by hand.|g' ${srcdir}autoconf.in >autoconf.tmp
chmod +x autoconf.tmp
chmod a-w autoconf.tmp
mv autoconf.tmp autoconf
make[2]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/bin'
Making all in .
make[2]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69'
make[2]: Nothing to be done for 'all-am'.
make[2]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69'
Making all in lib
make[2]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib'
Making all in Autom4te
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/Autom4te'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/Autom4te'
Making all in m4sugar
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/m4sugar'
autom4te_perllibdir='../..'/lib AUTOM4TE_CFG='../../lib/autom4te.cfg'         ../../bin/autom4te -B '../..'/lib -B '../..'/lib        				\
	--language=m4sugar			\
	--freeze			\
	--output=m4sugar.m4f
autom4te_perllibdir='../..'/lib AUTOM4TE_CFG='../../lib/autom4te.cfg'         ../../bin/autom4te -B '../..'/lib -B '../..'/lib        				\
	--language=m4sh			\
	--freeze			\
	--output=m4sh.m4f
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/m4sugar'
Making all in autoconf
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autoconf'
autom4te_perllibdir='../..'/lib AUTOM4TE_CFG='../../lib/autom4te.cfg'         ../../bin/autom4te -B '../..'/lib -B '../..'/lib        				\
	--language=autoconf			\
	--freeze			\
	--output=autoconf.m4f
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autoconf'
Making all in autotest
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autotest'
autom4te_perllibdir='../..'/lib AUTOM4TE_CFG='../../lib/autom4te.cfg'         ../../bin/autom4te -B '../..'/lib -B '../..'/lib        				\
	--language=autotest			\
	--freeze			\
	--output=autotest.m4f
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autotest'
Making all in autoscan
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autoscan'
echo '# Automatically Generated: do not edit this file' >autoscan.list
sed '/^[#]/!q' ./autoscan.pre                  >>autoscan.list
( \
  sed -n '/^[^#]/p' ./autoscan.pre; \
  autom4te_perllibdir='../..'/lib AUTOM4TE_CFG='../../lib/autom4te.cfg'         ../../bin/autom4te -B '../..'/lib -B '../..'/lib         --cache '' -M -l autoconf -t'AN_OUTPUT:$1: $2		$3' \
) | LC_ALL=C sort                                      >>autoscan.list
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autoscan'
Making all in emacs
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/emacs'
WARNING: Warnings can be ignored. :-)
if test "no" != no; then \
  set x; \
  list='autoconf-mode.el autotest-mode.el'; for p in $list; do \
    if test -f "$p"; then d=; else d="./"; fi; \
    set x "$@" "$d$p"; shift; \
  done; \
  shift; \
  EMACS="no" /bin/sh ../../build-aux/elisp-comp "$@" || exit 1; \
else : ; fi
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/emacs'
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib'
make[3]: Nothing to be done for 'all-am'.
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib'
make[2]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib'
Making all in doc
make[2]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/doc'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/doc'
Making all in tests
make[2]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests'
autom4te_perllibdir='..'/lib AUTOM4TE_CFG='../lib/autom4te.cfg'         ../bin/autom4te -B '..'/lib -B '..'/lib         --language=M4sh ./wrapper.as -o wrapper.in
rm -f autoconf autoconf.tmp
rm -f autoheader autoheader.tmp
input=wrapper.in; \
sed -e 's|@wrap_program[@]|autoconf|g' -e 's|@abs_top_srcdir[@]|/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69|g' -e 's|@abs_top_builddir[@]|/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69|g' -e "s|@configure_input[@]|Generated from $input.|g" wrapper.in >autoconf.tmp
rm -f autom4te autom4te.tmp
input=wrapper.in; \
sed -e 's|@wrap_program[@]|autoheader|g' -e 's|@abs_top_srcdir[@]|/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69|g' -e 's|@abs_top_builddir[@]|/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69|g' -e "s|@configure_input[@]|Generated from $input.|g" wrapper.in >autoheader.tmp
input=wrapper.in; \
sed -e 's|@wrap_program[@]|autom4te|g' -e 's|@abs_top_srcdir[@]|/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69|g' -e 's|@abs_top_builddir[@]|/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69|g' -e "s|@configure_input[@]|Generated from $input.|g" wrapper.in >autom4te.tmp
chmod +x autoconf.tmp
chmod +x autoheader.tmp
chmod a-w autoconf.tmp
chmod +x autom4te.tmp
chmod a-w autoheader.tmp
mv -f autoconf.tmp autoconf
chmod a-w autom4te.tmp
mv -f autoheader.tmp autoheader
mv -f autom4te.tmp autom4te
rm -f autoreconf autoreconf.tmp
rm -f autoscan autoscan.tmp
rm -f autoupdate autoupdate.tmp
input=wrapper.in; \
sed -e 's|@wrap_program[@]|autoreconf|g' -e 's|@abs_top_srcdir[@]|/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69|g' -e 's|@abs_top_builddir[@]|/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69|g' -e "s|@configure_input[@]|Generated from $input.|g" wrapper.in >autoreconf.tmp
input=wrapper.in; \
sed -e 's|@wrap_program[@]|autoscan|g' -e 's|@abs_top_srcdir[@]|/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69|g' -e 's|@abs_top_builddir[@]|/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69|g' -e "s|@configure_input[@]|Generated from $input.|g" wrapper.in >autoscan.tmp
input=wrapper.in; \
sed -e 's|@wrap_program[@]|autoupdate|g' -e 's|@abs_top_srcdir[@]|/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69|g' -e 's|@abs_top_builddir[@]|/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69|g' -e "s|@configure_input[@]|Generated from $input.|g" wrapper.in >autoupdate.tmp
chmod +x autoreconf.tmp
chmod a-w autoreconf.tmp
chmod +x autoscan.tmp
mv -f autoreconf.tmp autoreconf
chmod +x autoupdate.tmp
chmod a-w autoscan.tmp
chmod a-w autoupdate.tmp
rm -f ifnames ifnames.tmp
mv -f autoscan.tmp autoscan
mv -f autoupdate.tmp autoupdate
input=wrapper.in; \
sed -e 's|@wrap_program[@]|ifnames|g' -e 's|@abs_top_srcdir[@]|/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69|g' -e 's|@abs_top_builddir[@]|/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69|g' -e "s|@configure_input[@]|Generated from $input.|g" wrapper.in >ifnames.tmp
chmod +x ifnames.tmp
chmod a-w ifnames.tmp
mv -f ifnames.tmp ifnames
make[2]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests'
Making all in man
make[2]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/man'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/man'
make[1]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69'
>>> Source compiled.
>>> Test phase: sys-devel/autoconf-2.69-r3
make -j3   check
if test -d ./.git; then			\
  cd . &&						\
  git submodule --quiet foreach test '$(git rev-parse $sha1)'	\
      = '$(git merge-base origin $sha1)'			\
    || { echo 'maint.mk: found non-public submodule commit' >&2;	\
	 exit 1; };						\
else								\
  : ;								\
fi
make  check-recursive
make[1]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69'
Making check in bin
make[2]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/bin'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/bin'
Making check in .
make[2]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69'
make[2]: Nothing to be done for 'check-am'.
make[2]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69'
Making check in lib
make[2]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib'
Making check in Autom4te
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/Autom4te'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/Autom4te'
Making check in m4sugar
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/m4sugar'
make  check-local
make[4]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/m4sugar'
make[4]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/m4sugar'
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/m4sugar'
Making check in autoconf
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autoconf'
make  check-local
make[4]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autoconf'
make[4]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autoconf'
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autoconf'
Making check in autotest
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autotest'
make  check-local
make[4]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autotest'
make[4]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autotest'
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autotest'
Making check in autoscan
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autoscan'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autoscan'
Making check in emacs
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/emacs'
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/emacs'
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib'
make[3]: Nothing to be done for 'check-am'.
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib'
make[2]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib'
Making check in doc
make[2]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/doc'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/doc'
Making check in tests
make[2]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests'
make  check-local
make[3]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests'
:;{ \
  echo '# Signature of the current package.' && \
  echo 'm4_define([AT_PACKAGE_NAME],      [GNU Autoconf])' && \
  echo 'm4_define([AT_PACKAGE_TARNAME],   [autoconf])' && \
  echo 'm4_define([AT_PACKAGE_VERSION],   [2.69])' && \
  echo 'm4_define([AT_PACKAGE_STRING],    [GNU Autoconf 2.69])' && \
  echo 'm4_define([AT_PACKAGE_BUGREPORT], [bug-autoconf@gnu.org])' && \
  echo 'm4_define([AT_PACKAGE_URL],       [http://www.gnu.org/software/autoconf/])'; \
} > package.m4-t
mv package.m4-t package.m4
cd ../lib/autotest && make  autotest.m4f
make[4]: Entering directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autotest'
make[4]: 'autotest.m4f' is up to date.
make[4]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/lib/autotest'
autom4te_perllibdir='..'/lib AUTOM4TE_CFG='../lib/autom4te.cfg'         ../bin/autom4te -B '..'/lib -B '..'/lib         --language=autotest -I . -I . suite.at -o testsuite.tmp
mv testsuite.tmp testsuite
/bin/sh ./testsuite 
## ----------------------------- ##
## GNU Autoconf 2.69 test suite. ##
## ----------------------------- ##

Executables (autoheader, autoupdate...).

  1: Syntax of the shell scripts                     ok
  2: Syntax of the Perl scripts                      ok
  3: autom4te cache                                  ok
  4: autom4te --force                                ok
  5: autom4te and whitespace in file names           ok
  6: autom4te --trace and unusual macro names        ok
  7: autom4te --trace and whitespace                 ok
  8: autoconf --trace: user macros                   ok
  9: autoconf --trace: builtins                      ok
 10: autoconf: forbidden tokens, basic               ok
 11: autoconf: forbidden tokens, exceptions          ok
 12: autoconf: automatically allowed tokens          ok
 13: autoconf: the empty token                       ok
 14: autoconf: subdirectories                        ok
 15: autoconf: input from stdin                      ok
 16: autoconf: AC_AUTOCONF_VERSION                   ok
 17: autoconf: AC_PRESERVE_HELP_ORDER                ok
 18: ifnames                                         ok
 19: autoheader                                      ok
 20: autoheader and macros                           ok
 21: autoupdate                                      ok
 22: autoupdating AC_LINK_FILES                      ok
 23: autoupdating AC_PREREQ                          ok
 24: autoupdating AU_ALIAS                           ok
 25: autoupdating OLD to NEW                         ok
 26: autoupdating macros recursively                 expected failure (tools.at:945)
 27: autoupdating AC_HELP_STRING                     ok
 28: autoupdating with m4sugar                       ok
 29: autoupdating with m4_pushdef                    expected failure (tools.at:1027)
 30: autoupdating with AC_REQUIRE                    expected failure (tools.at:1053)
 31: autoupdating with complex quoting               expected failure (tools.at:1080)
 32: autoupdating AC_LANG_SAVE                       ok
 33: autoupdating AC_FOREACH                         ok
 34: autoupdating with aclocal and m4_include        ok
 35: autom4te preselections                          skipped (tools.at:1200)
 36: autom4te cache creation                         ok
 37: autom4te cache locking                          ok
 38: autotools and whitespace in file names          FAILED (tools.at:1310)

M4sugar.

 39: m4_stack                                        ok
 40: m4_defn                                         ok
 41: m4_dumpdef                                      ok
 42: m4_warn                                         ok
 43: m4_divert_stack                                 ok
 44: m4_expansion_stack                              ok
 45: m4_require: error message                       ok
 46: m4_require: circular dependencies               ok
 47: m4_require: one-shot initialization             ok
 48: m4_require: nested                              ok
 49: m4sugar shorthand conditionals                  ok
 50: m4_cond                                         ok
 51: m4 lists                                        ok
 52: m4_split                                        ok
 53: m4_do                                           ok
 54: m4_append                                       ok
 55: m4_join                                         ok
 56: m4_expand                                       ok
 57: m4_text_box                                     ok
 58: m4_text_wrap                                    ok
 59: m4_version_compare                              ok
 60: Standard regular expressions                    ok
 61: m4_bmatch                                       ok
 62: m4_toupper and m4_tolower                       ok
 63: m4_bpatsubsts                                   ok
 64: m4_esyscmd_s                                    ok
 65: M4 loops                                        ok
 66: m4_map                                          ok
 67: m4_map_args and m4_curry                        ok
 68: m4_combine                                      ok
 69: m4_max and m4_min                               ok
 70: recursion                                       ok
 71: m4_set                                          ok
 72: __file__ and __line__                           ok

M4sh.

 73: No extra re-exec with CONFIG_SHELL              ok
 74: Forced re-exec with CONFIG_SHELL                ok
 75: Configure re-execs self with CONFIG_SHELL       ok
 76: AS_WARN and AS_ERROR                            ok
 77: LINENO                                          ok
 78: LINENO stack                                    ok
 79: AS_BOX                                          ok
 80: AS_BASENAME                                     ok
 81: AS_DIRNAME                                      ok
 82: AS_SET_CATFILE                                  ok
 83: AS_ECHO and AS_ECHO_N                           ok
 84: AS_EXECUTABLE_P                                 ok
 85: AS_EXIT                                         ok
 86: AS_MKDIR_P                                      ok
 87: AS_VERSION_COMPARE                              ok
 88: as_me                                           ok
 89: Negated classes in globbing                     ok
 90: Null variable substitution                      ok
 91: Functions Support                               ok
 92: Functions and return Support                    ok
 93: Nested AS_REQUIRE_SHELL_FN                      ok
 94: Nested AS_REQUIRE                               ok
 95: AS_REQUIRE_SHELL_FN and m4_require              ok
 96: AS_HELP_STRING                                  ok
 97: AS_IF and AS_CASE                               ok
 98: AS_FOR                                          ok
 99: AS_LITERAL_IF                                   ok
100: AS_TR_SH and AS_TR_CPP                          ok
101: AS_VAR basics                                   ok
102: AS_VAR_APPEND                                   ok
103: AS_VAR_ARITH                                    ok
104: AS_INIT cleanup                                 ok
105: AS_INIT_GENERATED                               ok
106: AS_MESSAGE_FD                                   ok
107: _AS_CLEAN_DIR                                   ok
108: ECHO_C                                          ok

Autotest.

109: AT_COPYRIGHT                                    ok
110: AT_DATA                                         ok
111: Empty test suite                                ok
112: Banner-only test suite                          ok
113: Empty test                                      ok
114: Empty check                                     ok
115: AT_SETUP without AT_INIT                        ok
116: AT_BANNER without AT_INIT                       ok
117: AT_CLEANUP without AT_INIT                      ok
118: Missing AT_CLEANUP                              ok
119: AT_FAIL_IF without AT_SETUP                     ok
120: AT_SKIP_IF without AT_SETUP                     ok
121: AT_CHECK without AT_SETUP                       ok
122: AT_DATA without AT_SETUP                        ok
123: AT_XFAIL_IF without AT_SETUP                    ok
124: AT_KEYWORDS without AT_SETUP                    ok
125: AT_CLEANUP without AT_SETUP                     ok
126: AT_BANNER inside AT_SETUP                       ok
127: AT_SETUP inside AT_SETUP                        ok
128: Multiple AT_INIT                                ok
129: Tested programs                                 ok
130: Startup error messages                          ok
131: Truth                                           ok
132: Fallacy                                         ok
133: Skip                                            ok
134: Hard fail                                       ok
135: AT_FAIL_IF                                      ok
136: AT_SKIP_IF                                      ok
137: Syntax error                                    skipped (autotest.at:366)
138: errexit                                         ok
139: at_status                                       ok
140: AT_CHECK execution environment                  ok
141: unquoted output                                 ok
142: Trace output                                    ok
143: Logging                                         ok
144: Binary output                                   ok
145: Cleanup                                         ok
146: Literal multiline command                       ok
147: Multiline parameter expansion                   ok
148: Backquote command substitution                  ok
149: Multiline backquote command substitution        ok
150: Parenthetical command substitution              ok
151: Multiline parenthetical command substitution    ok
152: Shell comment in command                        ok
153: Invalid brace-enclosed parameter expansion      ok
154: Multiline command from M4 expansion             ok
155: Double-M4-quoted command                        ok
156: Metacharacters in command from M4 expansion     ok
157: BS-newline in command                           ok
158: ^BS-newline in command                          ok
159: BSx641-newline in command                       ok
160: BS-BS-newline in command                        ok
161: BSx640-newline in command                       ok
162: Newline-CODE-BS-newline in command              ok
163: Single-quote-BS-newline in command              ok
164: Single-quote-newline-BS-newline in command      ok
165: Input from stdin                                ok
166: Backquote in a test title                       ok
167: Single-quote in a test title                    ok
168: Double-quote in a test title                    ok
169: Backslash in a test title                       ok
170: Brackets in a test title                        ok
171: Left bracket in a test title                    ok
172: Right bracket in a test title                   ok
173: Quoted pound in a test title                    ok
174: Pound in a test title                           ok
175: Quoted comma in a test title                    ok
176: Comma in a test title                           ok
177: Parentheses in a test title                     ok
178: Left paren in a test title                      ok
179: Right paren in a test title                     ok
180: Quoted Macro in a test title                    ok
181: Macro in a test title                           ok
182: Macro with backquote in a test title            ok
183: Macro with single-quote in a test title         ok
184: Macro with double-quote in a test title         ok
185: Macro with backslash in a test title            ok
186: Macro echoing macro in a test title             ok
187: Macro echoing single-quote in a test title      ok
188: Long test title in a test title                 ok
189: Longer test title in a test title               ok
190: Long test source lines                          ok
191: Huge testsuite                                  ok
192: Debugging a successful test                     ok
193: Debugging script and environment                ok
194: Debugging a failed test                         ok
195: Using atlocal                                   ok
196: Choosing where testsuite is run                 ok
197: recheck                                         ok
198: Banners                                         ok
199: Keywords and ranges                             ok
200: Keyword wrapping                                ok
201: AT_ARG_OPTION                                   ok
202: AT_ARG_OPTION_ARG                               ok
203: parallel test execution                         ok
204: parallel truth                                  ok
205: parallel fallacy                                ok
206: parallel skip                                   ok
207: parallel syntax error                           skipped (autotest.at:1476)
208: parallel errexit                                ok
209: parallel autotest and signal handling           ok
210: parallel args but non-working mkfifo            ok
211: colored test results                            ok
212: srcdir propagation                              ok
213: whitespace in absolute testdir                  ok
214: unusual file names                              ok
215: Erlang Eunit unit tests                         ok

Autoconf base layer.

216: AC_REQUIRE: topological sort                    ok
217: AC_REQUIRE: error message                       ok
218: AC_REQUIRE & AC_DEFUN_ONCE: Require, expand     ok
219: AC_REQUIRE & AC_DEFUN_ONCE: Expand, require     ok
220: AC_REQUIRE & AC_PROVIDE                         ok
221: AC_INIT                                         ok
222: AC_INIT with unusual version strings            ok
223: AC_COPYRIGHT                                    ok
224: AC_CACHE_CHECK                                  skipped (base.at:488)
225: AC_CACHE_LOAD                                   ok
226: AC_COMPUTE_INT                                  ok
227: AC_TRY_COMMAND                                  ok
228: Input/Output                                    ok
229: configure arguments                             ok
230: AC_ARG_ENABLE and AC_ARG_WITH                   ok
231: configure directories                           ok

Testing config.status.

232: AC_CONFIG_COMMANDS with empty commands          ok
233: AC_CONFIG_COMMANDS with temporary directory     ok
234: Multiple AC_CONFIG_FILES                        ok
235: Parameterized AC_CONFIG_FILES                   ok
236: AC_ARG_VAR                                      ok
237: AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS    ok
238: Macro calls in AC_CONFIG_COMMANDS tags          ok
239: Missing templates                               ok
240: configure invocation                            ok
241: #define header templates                        ok
242: Torturing config.status                         ok
243: Substitute a 2000-byte string                   ok
244: Define to a 2000-byte string                    ok
245: Substitute and define special characters        ok
246: Substitute a newline                            ok
247: Define a newline                                ok
248: AC_SUBST: variable name validation              ok
249: datarootdir workaround                          ok
250: srcdir                                          ok
251: VPATH                                           ok
252: Signal handling                                 ok
253: AC_CONFIG_LINKS                                 ok
254: AC_CONFIG_LINKS and identical files             ok

autoreconf.

255: Configuring subdirectories                      ok
256: Deep Package                                    ok
257: Non-Autoconf AC_CONFIG_SUBDIRS                  ok
258: Non-literal AC_CONFIG_SUBDIRS                   ok
259: Empty directory                                 ok
260: Unusual Automake input files                    ok

Low level compiling/preprocessing macros.

261: AC_LANG, AC_LANG_PUSH & AC_LANG_POP             ok
262: AC_REQUIRE & AC_LANG                            ok
263: AC_LANG_SOURCE                                  ok
264: AC_LANG_SOURCE(C++)                             ok
265: AC_LANG_SOURCE example                          ok
266: AC_LANG_PROGRAM example                         ok
267: AC_COMPILE_IFELSE                               ok
268: AC_RUN_IFELSE                                   ok
269: Order of user actions and cleanup               ok
270: AC_TRY_LINK_FUNC                                ok
271: Multiple languages                              ok

Testing autoconf/lang macros.

272: AC_NO_EXECUTABLES                               ok
273: AC_REQUIRE_CPP                                  ok

C low level compiling/preprocessing macros.

274: Extensions                                      ok
275: Broken/missing compilers                        ok
276: C keywords                                      ok
277: AC_PROG_CPP requires AC_PROG_CC                 ok
278: AC_PROG_CPP with warnings                       ok
279: AC_PROG_CPP without warnings                    ok
280: AC_PROG_CPP via CC                              ok
281: AC_NO_EXECUTABLES (working linker)              ok
282: AC_NO_EXECUTABLES (broken linker)               ok
283: AC_USE_SYSTEM_EXTENSIONS                        ok
284: AC_C_RESTRICT and C++                           ok
285: AC_OPENMP and C                                 ok
286: AC_OPENMP and C++                               ok

Testing autoconf/c macros.

287: AC_C_BACKSLASH_A                                ok
288: AC_C_BIGENDIAN                                  ok
289: AC_C_CHAR_UNSIGNED                              ok
290: AC_C_FLEXIBLE_ARRAY_MEMBER                      ok
291: AC_C_INLINE                                     ok
292: AC_C_PROTOTYPES                                 ok
293: AC_C_RESTRICT                                   ok
294: AC_C_STRINGIZE                                  ok
295: AC_C_TYPEOF                                     ok
296: AC_C_VARARRAYS                                  ok
297: AC_OPENMP                                       ok
298: AC_PROG_CC_C89                                  ok
299: AC_PROG_CC_C99                                  ok
300: AC_PROG_CC_C_O                                  ok
301: AC_PROG_CC_STDC                                 ok
302: AC_PROG_CPP_WERROR                              ok
303: AC_PROG_GCC_TRADITIONAL                         ok
304: AC_LANG_C                                       ok
305: AC_LANG_CPLUSPLUS                               ok
306: AC_LANG_OBJC                                    ok

Fortran low level compiling/preprocessing macros.

307: GNU Fortran 77                                  ok
308: GNU Fortran                                     ok
309: AC_OPENMP and Fortran 77                        ok
310: AC_OPENMP and Fortran                           ok
311: AC_F77_DUMMY_MAIN usage                         ok
312: AC_FC_DUMMY_MAIN usage                          ok
313: AC_F77_MAIN usage                               ok
314: AC_FC_MAIN usage                                ok
315: AC_F77_FUNC usage                               ok
316: AC_FC_FUNC usage                                ok
317: AC_FC_SRCEXT usage                              ok
318: AC_FC_PP_SRCEXT usage                           ok
319: AC_FC_FREEFORM                                  ok
320: AC_FC_FREEFORM with AC_FC_SRCEXT                ok
321: AC_FC_FIXEDFORM                                 ok
322: AC_FC_FIXEDFORM with AC_FC_SRCEXT               ok
323: AC_FC_LINE_LENGTH                               ok
324: AC_FC_CHECK_BOUNDS                              ok
325: AC_FC_MODULE_FLAG                               ok

Testing autoconf/fortran macros.

326: AC_F77_IMPLICIT_NONE                            ok
327: AC_F77_MAIN                                     ok
328: AC_F77_WRAPPERS                                 ok
329: AC_FC_CHECK_BOUNDS                              ok
330: AC_FC_FIXEDFORM                                 ok
331: AC_FC_FREEFORM                                  ok
332: AC_FC_IMPLICIT_NONE                             ok
333: AC_FC_LINE_LENGTH                               ok
334: AC_FC_MAIN                                      ok
335: AC_FC_MODULE_EXTENSION                          ok
336: AC_FC_MODULE_FLAG                               ok
337: AC_FC_MODULE_OUTPUT_FLAG                        ok
338: AC_FC_PP_DEFINE                                 ok
339: AC_FC_WRAPPERS                                  ok
340: AC_PROG_F77_C_O                                 ok
341: AC_PROG_FC_C_O                                  ok
342: AC_F77_NAME_MANGLING                            ok
343: AC_LANG_FORTRAN77                               ok

Erlang low level compiling and utility macros.

344: Erlang                                          skipped (erlang.at:30)
345: AC_ERLANG_CHECK_LIB                             skipped (erlang.at:52)
346: AC_ERLANG_SUBST_ROOT_DIR                        skipped (erlang.at:72)
347: AC_ERLANG_SUBST_LIB_DIR                         skipped (erlang.at:89)
348: AC_ERLANG_SUBST_INSTALL_LIB_DIR                 ok
349: AC_ERLANG_SUBST_INSTALL_LIB_SUBDIR              ok
350: AC_ERLANG_SUBST_ERTS_VER                        skipped (erlang.at:128)

Go low level compiling and utility macros.

351: Go                                              skipped (go.at:30)

Testing autoconf/go macros.

352: AC_LANG_GO                                      ok

Semantics.

353: AC_CHECK_LIB                                    ok
354: AC_SEARCH_LIBS                                  ok
355: AC_SEARCH_LIBS (none needed)                    ok
356: AC_CHECK_DECLS                                  ok
357: AC_CHECK_FUNCS                                  ok
358: AC_REPLACE_FUNCS                                ok
359: AC_CHECK_HEADERS                                ok
360: AC_CHECK_HEADERS (preprocessor test)            ok
361: AC_CHECK_HEADERS (compiler test)                ok
362: AC_CHECK_MEMBER                                 ok
363: AC_CHECK_MEMBERS                                ok
364: AC_CHECK_ALIGNOF                                ok
365: AC_CHECK_ALIGNOF (cross compile)                ok
366: AC_CHECK_ALIGNOF struct                         ok
367: AC_CHECK_ALIGNOF struct (cross compile)         ok
368: AC_CHECK_SIZEOF                                 ok
369: AC_CHECK_SIZEOF (cross compile)                 ok
370: AC_CHECK_SIZEOF struct                          ok
371: AC_CHECK_SIZEOF struct (cross compile)          ok
372: AC_CHECK_TYPES                                  ok
373: AC_CHECK_TYPES: backward compatibility          ok
374: AC_CHECK_FILES                                  ok
375: AC_CHECK_PROG & AC_CHECK_PROGS                  ok
376: AC_C_BIGENDIAN                                  ok
377: AC_PATH_PROG & AC_PATH_PROGS                    ok
378: AC_PATH_PROGS_FEATURE_CHECK                     ok
379: AC_PATH_XTRA                                    ok
380: AC_SYS_RESTARTABLE_SYSCALLS                     ok
381: AC_FUNC_SETVBUF_REVERSED                        ok
382: AC_FUNC_WAIT3                                   ok

Testing autoconf/general macros.

383: AC_ARG_ENABLE                                   ok
384: AC_ARG_PROGRAM                                  ok
385: AC_ARG_WITH                                     ok
386: AC_CHECK_DECLS_ONCE                             ok
387: AC_EGREP_CPP                                    ok
388: AC_EGREP_HEADER                                 ok
389: AC_LIBOBJ                                       ok
390: AC_LIBSOURCES                                   ok
391: AC_PREFIX_DEFAULT                               ok
392: AC_CHECKING                                     ok
393: AC_COMPILE_CHECK                                ok
394: AC_ENABLE                                       ok
395: AC_FOREACH                                      ok
396: AC_MSG_RESULT_UNQUOTED                          ok
397: AC_TRY_COMPILE                                  ok
398: AC_TRY_CPP                                      ok
399: AC_TRY_LINK                                     ok
400: AC_TRY_RUN                                      ok
401: AC_VALIDATE_CACHED_SYSTEM_TUPLE                 ok
402: AC_WITH                                         ok

Testing autoconf/status macros.

403: AC_OUTPUT_COMMANDS                              ok

Testing autoconf/specific macros.

404: AC_SYS_INTERPRETER                              ok
405: AC_SYS_LARGEFILE                                ok
406: AC_SYS_LONG_FILE_NAMES                          ok
407: AC_SYS_POSIX_TERMIOS                            ok
408: AC_AIX                                          ok
409: AC_ARG_ARRAY                                    ok
410: AC_DECL_SYS_SIGLIST                             ok
411: AC_DYNIX_SEQ                                    ok
412: AC_HAVE_POUNDBANG                               ok
413: AC_IRIX_SUN                                     ok
414: AC_ISC_POSIX                                    ok
415: AC_MINIX                                        ok
416: AC_SCO_INTL                                     ok
417: AC_XENIX_DIR                                    ok

Testing autoconf/programs macros.

418: AC_PROG_AWK                                     ok
419: AC_PROG_FGREP                                   ok
420: AC_PROG_INSTALL                                 ok
421: AC_PROG_LEX                                     ok
422: AC_PROG_LN_S                                    ok
423: AC_PROG_MAKE_SET                                ok
424: AC_PROG_MKDIR_P                                 ok
425: AC_PROG_RANLIB                                  ok
426: AC_PROG_SED                                     ok
427: AC_PROG_YACC                                    ok
428: AC_CHECK_TOOL_PREFIX                            ok
429: AC_DECL_YYTEXT                                  ok
430: AC_RSH                                          ok

Testing autoconf/headers macros.

431: AC_CHECK_HEADERS_ONCE                           ok
432: AC_CHECK_HEADER_STDBOOL                         ok
433: AC_HEADER_ASSERT                                ok
434: AC_HEADER_MAJOR                                 ok
435: AC_HEADER_RESOLV                                ok
436: AC_HEADER_STAT                                  ok
437: AC_HEADER_STDBOOL                               ok
438: AC_HEADER_TIOCGWINSZ                            ok
439: AC_DIR_HEADER                                   ok
440: AC_MEMORY_H                                     ok
441: AC_UNISTD_H                                     ok
442: AC_USG                                          ok

Testing autoconf/types macros.

443: AC_STRUCT_DIRENT_D_INO                          ok
444: AC_STRUCT_DIRENT_D_TYPE                         ok
445: AC_STRUCT_ST_BLOCKS                             ok
446: AC_STRUCT_TIMEZONE                              ok
447: AC_TYPE_INT16_T                                 ok
448: AC_TYPE_INT32_T                                 ok
449: AC_TYPE_INT64_T                                 ok
450: AC_TYPE_INT8_T                                  ok
451: AC_TYPE_INTMAX_T                                ok
452: AC_TYPE_INTPTR_T                                ok
453: AC_TYPE_LONG_DOUBLE                             ok
454: AC_TYPE_LONG_DOUBLE_WIDER                       ok
455: AC_TYPE_MODE_T                                  ok
456: AC_TYPE_OFF_T                                   ok
457: AC_TYPE_SSIZE_T                                 ok
458: AC_TYPE_UINT16_T                                ok
459: AC_TYPE_UINT32_T                                ok
460: AC_TYPE_UINT64_T                                ok
461: AC_TYPE_UINT8_T                                 ok
462: AC_TYPE_UINTMAX_T                               ok
463: AC_TYPE_UINTPTR_T                               ok
464: AC_C_LONG_DOUBLE                                ok
465: AC_INT_16_BITS                                  ok
466: AC_LONG_64_BITS                                 ok
467: AC_STRUCT_ST_BLKSIZE                            ok
468: AC_STRUCT_ST_RDEV                               ok
469: AC_TYPE_SIGNAL                                  ok
470: AM_TYPE_PTRDIFF_T                               ok

Testing autoconf/functions macros.

471: AC_CHECK_FUNCS_ONCE                             ok
472: AC_FUNC_CHOWN                                   ok
473: AC_FUNC_CLOSEDIR_VOID                           ok
474: AC_FUNC_ERROR_AT_LINE                           ok
475: AC_FUNC_FNMATCH                                 ok
476: AC_FUNC_FORK                                    ok
477: AC_FUNC_FSEEKO                                  ok
478: AC_FUNC_GETGROUPS                               ok
479: AC_FUNC_GETMNTENT                               ok
480: AC_FUNC_GETPGRP                                 ok
481: AC_FUNC_LSTAT                                   ok
482: AC_FUNC_MALLOC                                  ok
483: AC_FUNC_MBRTOWC                                 ok
484: AC_FUNC_MEMCMP                                  ok
485: AC_FUNC_MKTIME                                  ok
486: AC_FUNC_MMAP                                    ok
487: AC_FUNC_OBSTACK                                 ok
488: AC_FUNC_REALLOC                                 ok
489: AC_FUNC_SELECT_ARGTYPES                         ok
490: AC_FUNC_SETPGRP                                 ok
491: AC_FUNC_STAT                                    ok
492: AC_FUNC_STRCOLL                                 ok
493: AC_FUNC_STRERROR_R                              ok
494: AC_FUNC_STRFTIME                                ok
495: AC_FUNC_STRNLEN                                 ok
496: AC_FUNC_STRTOD                                  ok
497: AC_FUNC_STRTOLD                                 ok
498: AC_FUNC_UTIME_NULL                              ok
499: AC_FUNC_VPRINTF                                 ok

Testing autoconf/libs macros.

500: AC_HAVE_LIBRARY                                 ok

Compatibility with other tools.

501: Libtool                                         FAILED (foreign.at:61)
502: shtool                                          ok

Autoscan.

503: autoscan                                        ok

## ------------- ##
## Test results. ##
## ------------- ##

ERROR: 493 tests were run,
6 failed (4 expected failures).
10 tests were skipped.
## -------------------------- ##
## testsuite.log was created. ##
## -------------------------- ##

Please send `tests/testsuite.log' and all information you think might help:

   To: <bug-autoconf@gnu.org>
   Subject: [GNU Autoconf 2.69] testsuite: 38 501 failed

You may investigate any problem if you feel able to do so, in which
case the test suite provides a good starting point.  Its output may
be found below `tests/testsuite.dir'.

make[3]: *** [Makefile:596: check-local] Error 1
make[3]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests'
make[2]: *** [Makefile:411: check-am] Error 2
make[2]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69/tests'
make[1]: *** [Makefile:357: check-recursive] Error 1
make[1]: Leaving directory '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69'
make: *** [Makefile:665: check] Error 2
 * ERROR: sys-devel/autoconf-2.69-r3::gentoo failed (test phase):
 *   Make check failed. See above for details.
 * 
 * Call stack:
 *            ebuild.sh, line  115:  Called src_test
 *          environment, line 1960:  Called default
 *   phase-functions.sh, line  807:  Called default_src_test
 *   phase-functions.sh, line  836:  Called __eapi0_src_test
 *     phase-helpers.sh, line  763:  Called die
 * The specific snippet of code:
 *   		$emake_cmd ${internal_opts} check || \
 *   			die "Make check failed. See above for details."
 * 
 * If you need support, post the output of `emerge --info '=sys-devel/autoconf-2.69-r3::gentoo'`,
 * the complete build log and the output of `emerge -pqv '=sys-devel/autoconf-2.69-r3::gentoo'`.
 * The complete build log is located at '/var/log/portage-build/build/sys-devel/autoconf-2.69-r3:20170428-205946.log'.
 * For convenience, a symlink to the build log is located at '/var/tmp/portage/sys-devel/autoconf-2.69-r3/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/sys-devel/autoconf-2.69-r3/temp/environment'.
 * Working directory: '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69'
 * S: '/var/tmp/portage/sys-devel/autoconf-2.69-r3/work/autoconf-2.69'

Attachment: pgpJrIwNX1V6t.pgp
Description: OpenPGP digital signature

Reply via email to