FreeBSD_HEAD_i386 - Build #1764 - Still Failing

From: <jenkins-admin_at_FreeBSD.org>
Date: Wed, 25 Nov 2015 22:16:46 +0000 (GMT)
FreeBSD_HEAD_i386 - Build #1764 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1764/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1764/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1764/console

Change summaries:

291332 by bdrewery:
Rename Makefile.inc1 to dtrace.test.mk to avoid clash with top-level Makefile.inc1.

Discussed with:	ngie, markj
Sponsored by:	EMC / Isilon Storage Division

291331 by bdrewery:
Avoid requiring 'make depend' here.

Really this should not be a DPSRCS.  The acct_test.c should not #include
convert.c, but just link it in as a normal SRCS.

MFC after:	1 week
Sponsored by:	EMC / Isilon Storage Division

291330 by bdrewery:
Replace DPSRCS that work fine in SRCS.

This is so that 'make depend' is not a required build step in these
files.

DPSRCS is overall unneeded.  DPSRCS already contains SRCS, so anything
which can safely be in SRCS should be.  DPSRCS is mostly just a way to
generate files that should not be linked into the final PROG/LIB.  For
headers and grammars it is safe for them to be in SRCS since they will
be excluded during linking and installation.

The only remaining uses of DPSRCS are for generating .c or .o files that
must be built before 'make depend' can run 'mkdep' on the SRCS c files
list.  A semi-proper example is in tests/sys/kern/acct/Makefile where a
checked-in .c file has an #include on a generated .c file.  The
generated .c file should not be linked into the final PROG though since
it is #include'd.  The more proper way here is just to build/link it in
though without DPSRCS.  Another example is in sys/modules/linux/Makefile
where a shell script runs to parse a DPSRCS .o file that should not be
linked into the module.  Beyond those, the need for DPSRCS is largely
unneeded, redundant, and forces 'make depend' to be ran.  Generally,
these Makefiles should avoid the need for DPSRCS and define proper
dependencies for their files as well.

An example of an improper usage and why this matters is in usr.bin/netstat.
nl_defs.h was only in DPSRCS and so was not generated during 'make all',
but only during 'make depend'.  The files including it lacked proper
depenencies on it, which forced running 'make depend' to workaround that
bug.  The 'make depend' target should mostly be used for incremental build
help, not to produce a working build.  This specific example was broken in
the meta build until r287905 since it does not run 'make depend'.

The gnu/lib/libreadline/readline case is fine since bsd.lib.mk has 'OBJS:
SRCS:M*.h' when there is no .depend file.

Sponsored by:	EMC / Isilon Storage Division
MFC after:	1 week

291329 by bdrewery:
Remove redundant DPSRCS which were already in SRCS.

DPSRCS already contains all of SRCS.

MFC after:	1 week
Sponsored by:	EMC / Isilon Storage Division

291328 by lidl:
Have syslogd honor 'mesg' status when logging to users.

PR:		bin/196742
Submitted by:	jef at mail acme com
Approved by:	rpaulo (mentor)
Differential Revision:	https://reviews.freebsd.org/D4270

291327 by bdrewery:
Define a LIB<NAME>DIR for every library that LIBADD provides.

This is going to be used to allow DIRDEPS to be bootstrapped off of
LIBADD/DPADD.  It currently works for internal libraries which have a
DIR defined for them but also use the .a library from a src-mapped obj
directory.  It can also be useful for using -L without a --sysroot per
LIBADD to use the OBJDIR version of the libraries.

I didn't review every LIBADD, so it is possible this is missing some.

Sponsored by:	EMC / Isilon Storage Division

291326 by bdrewery:
Fix spelling error.

291325 by bdrewery:
META MODE: Avoid dirdep dependency on lib/libmd.

This avoids using the staged headers for sys/crypto/sha2/*.h, such as sha256.h,
which added an unneeded pre-build dependency on libmd to libcrypt.  This
header is an INCS in lib/libmd, but found via .PATH in sys/crypto/sha2.
Since the libcrypt build was already using the in-src libmd headers
directly, just teach it how to find the sha256.h header as well.

Sponsored by:	EMC / Isilon Storage Division

291324 by bdrewery:
META MODE: Fix MACHINE=host builds.

We need to not use -nostdinc since it breaks building of clang itself.  Use
-isystem rather than -I/usr/include and -nostdinc which gets us using
the stage include directory before searching the real host headers.
This allows removing more of the -I hacks to get host headers since the
headers are no longer excluded.  The -B seemed unneeded.

This fixes building of secure/lib/libcrypto which was looking at the
/usr/include/openssl/asn1.h header rather than the staged one.

This fixes building of clang which wants to find its own internal
headers in the STAGEDIR/usr/lib/clang/* path.

Sponsored by:	EMC / Isilon Storage Division

291323 by bdrewery:
Stop looking up the same id(1) results in sub-makes.

Sponsored by:	EMC / Isilon Storage Division

291322 by bdrewery:
META MODE: Remove unneeded libmd.host dependency for xinstall.host.

This is chasing r291026.

Sponsored by:	EMC / Isilon Storage Division

291321 by bdrewery:
META MODE: Fix 'make bootstrap-tools'.

The main problem was bitrot after elftoolchain being swapped in for the
GNU toolchain.

This also reworks how the list of 'host allowed' libraries is determined
to only allow INTERNALLIBs, which is needed for libelftc to come in.

For usr.bin/readelf use the same hack, as libelf and libdward, to bring in
the needed sys/ headers for host builds.  This has not yet been a problem due
to readelf not being built as a host tool in buildworld.  This is possible
in the meta build though when building the toolchain.

Sponsored by:	EMC / Isilon Storage Division

291320 by bdrewery:
META MODE: Don't create .meta files when symlinking sources into the obj directory.

Tracking these leads to situations where meta mode will consider the
file to be out of date if /bin/sh or /bin/ln are newer than the source
file.  There's no reason for meta mode to do this as make is already
handling the rebuild dependency fine.

Sponsored by:	EMC / Isilon Storage Division

291319 by bdrewery:
META MODE: Add more hosttools needed pre-universe.

Sponsored by:	EMC / Isilon Storage Division

291318 by bdrewery:
META MODE: Show PATH on errors.

Sponsored by:	EMC / Isilon Storage Division

291317 by bdrewery:
META MODE: Need to include the LEGACY_TOOLS directories into PATH.

This is just as Makefile.inc1 does it for these phases.  Otherwise some
of the build tools are not found and used properly, such as 'make-roken'
in the kerberos5 build on older releases.

Sponsored by:	EMC / Isilon Storage Division



The end of the build log:

[...truncated 96239 lines...]
--- getprotoent_test ---
(cd /usr/src/lib/libc/tests/net &&  DEPENDFILE=.depend.getprotoent_test  NO_SUBDIR=1 make -f /usr/src/lib/libc/tests/net/Makefile _RECURSING_PROGS=  PROG=getprotoent_test )
--- all_subdir_kerberos5 ---
--- prompter_posix.po ---
cc  -pg  -O2 -pipe   -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/asn1  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/roken  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/ipc  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/base -I. -DHAVE_CONFIG_H -I/usr/src/kerberos5/lib/libkrb5/../../include -std=gnu99 -fstack-protector-strong   -Qunused-arguments -c /usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5/prompter_posix.c -o prompter_posix.po
--- all_subdir_lib ---
--- t_getprotoent.o ---
cc  -O2 -pipe   -I/usr/src/lib/libc/tests/net -I/usr/src/lib/libnetbsd -I/usr/src/contrib/netbsd-tests -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/contrib/netbsd-tests/lib/libc/net/t_getprotoent.c -o t_getprotoent.o
--- getprotoent_test ---
cc -O2 -pipe -I/usr/src/lib/libc/tests/net -I/usr/src/lib/libnetbsd -I/usr/src/contrib/netbsd-tests -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments  -L/usr/obj/usr/src//lib/libnetbsd -o getprotoent_test t_getprotoent.o  -lnetbsd -lprivateatf-c
--- ether_aton_test ---
(cd /usr/src/lib/libc/tests/net &&  DEPENDFILE=.depend.ether_aton_test  NO_SUBDIR=1 make -f /usr/src/lib/libc/tests/net/Makefile _RECURSING_PROGS=  PROG=ether_aton_test )
--- t_ether_aton.o ---
cc  -O2 -pipe   -I/usr/src/lib/libc/tests/net -I/usr/src/lib/libnetbsd -I/usr/src/contrib/netbsd-tests -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/contrib/netbsd-tests/lib/libc/net/t_ether_aton.c -o t_ether_aton.o
--- all_subdir_kerberos5 ---
--- rd_cred.po ---
cc  -pg  -O2 -pipe   -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/asn1  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/roken  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/ipc  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/base -I. -DHAVE_CONFIG_H -I/usr/src/kerberos5/lib/libkrb5/../../include -std=gnu99 -fstack-protector-strong   -Qunused-arguments -c /usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5/rd_cred.c -o rd_cred.po
--- all_subdir_rescue ---
--- pass1.o ---
cc  -O2 -pipe   -I/usr/src/sbin/fsdb/../fsck_ffs -DRESCUE -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/sbin/fsdb/../fsck_ffs/pass1.c -o pass1.o
--- all_subdir_lib ---
--- aton_ether_subr.o ---
--- all_subdir_gnu ---
2 warnings generated.
--- all_subdir_lib ---
cc  -O2 -pipe   -I/usr/src/lib/libc/tests/net -I/usr/src/lib/libnetbsd -I/usr/src/contrib/netbsd-tests -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c aton_ether_subr.c -o aton_ether_subr.o
--- all_subdir_gnu ---
--- valarith.o ---
cc   -O2 -pipe   -Dxregcomp=regcomp -Dxre_exec=re_exec -Dxregexec=regexec -Dxre_search=re_search -Dxre_compile_fastmap=re_compile_fastmap -Dxregerror=regerror -Dxre_comp=re_comp -Dxre_set_syntax=re_set_syntax -DHAVE_CONFIG_H -DRL_NO_COMPAT -DMI_OUT=1 -DTUI=1 -DDEBUGDIR=\"/usr/lib/debug\" -I. -I/usr/src/gnu/usr.bin/gdb/libgdb/../arch/i386 -I/usr/src/gnu/usr.bin/gdb/libgdb/../../binutils/libbfd -I/usr/src/gnu/usr.bin/gdb/libgdb/../../binutils/libbfd/i386 -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb/config -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/binutils/include -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/include -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/binutils/bfd -I/usr/obj/usr/src/gnu/usr.bin/gdb/libgdb/../../../lib/libreadline/readline/.. -std=gnu99 -fstack-protector-strong   -Qunused-arguments -c /usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb/valarith.c -o valarith.o
--- all_subdir_lib ---
--- ether_aton_test ---
cc -O2 -pipe -I/usr/src/lib/libc/tests/net -I/usr/src/lib/libnetbsd -I/usr/src/contrib/netbsd-tests -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments  -L/usr/obj/usr/src//lib/libnetbsd -o ether_aton_test aton_ether_subr.o t_ether_aton.o  -lnetbsd -lprivateatf-c
--- nsdispatch_test ---
echo '#! /usr/libexec/atf-sh' > nsdispatch_test.tmp
cat /usr/src/contrib/netbsd-tests/lib/libc/net/t_nsdispatch.sh >>nsdispatch_test.tmp
chmod +x nsdispatch_test.tmp
mv nsdispatch_test.tmp nsdispatch_test
--- protoent_test ---
echo '#! /usr/libexec/atf-sh' > protoent_test.tmp
cat /usr/src/contrib/netbsd-tests/lib/libc/net/t_protoent.sh >>protoent_test.tmp
chmod +x protoent_test.tmp
mv protoent_test.tmp protoent_test
--- servent_test ---
echo '#! /usr/libexec/atf-sh' > servent_test.tmp
cat /usr/src/contrib/netbsd-tests/lib/libc/net/t_servent.sh >>servent_test.tmp
chmod +x servent_test.tmp
mv servent_test.tmp servent_test
--- Kyuafile.auto ---
===> lib/libc/tests/regex (all)
--- h_regex ---
(cd /usr/src/lib/libc/tests/regex &&  DEPENDFILE=.depend.h_regex  NO_SUBDIR=1 make -f /usr/src/lib/libc/tests/regex/Makefile _RECURSING_PROGS=  PROG=h_regex )
--- main.o ---
cc  -O2 -pipe   -I/usr/src/contrib/netbsd-tests/lib/libc/regex -I/usr/src/lib/libc/regex -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/contrib/netbsd-tests/lib/libc/regex/main.c -o main.o
--- all_subdir_kerberos5 ---
--- rd_error.po ---
cc  -pg  -O2 -pipe   -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/asn1  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/roken  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/ipc  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/base -I. -DHAVE_CONFIG_H -I/usr/src/kerberos5/lib/libkrb5/../../include -std=gnu99 -fstack-protector-strong   -Qunused-arguments -c /usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5/rd_error.c -o rd_error.po
--- all_subdir_lib ---
--- split.o ---
--- all_subdir_rescue ---
--- pass1b.o ---
--- all_subdir_lib ---
cc  -O2 -pipe   -I/usr/src/contrib/netbsd-tests/lib/libc/regex -I/usr/src/lib/libc/regex -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/contrib/netbsd-tests/lib/libc/regex/split.c -o split.o
--- all_subdir_rescue ---
cc  -O2 -pipe   -I/usr/src/sbin/fsdb/../fsck_ffs -DRESCUE -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/sbin/fsdb/../fsck_ffs/pass1b.c -o pass1b.o
--- all_subdir_lib ---
--- debug.o ---
cc  -O2 -pipe   -I/usr/src/contrib/netbsd-tests/lib/libc/regex -I/usr/src/lib/libc/regex -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/contrib/netbsd-tests/lib/libc/regex/debug.c -o debug.o
--- all_subdir_rescue ---
--- pass2.o ---
cc  -O2 -pipe   -I/usr/src/sbin/fsdb/../fsck_ffs -DRESCUE -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/sbin/fsdb/../fsck_ffs/pass2.c -o pass2.o
--- all_subdir_gnu ---
--- valops.o ---
cc   -O2 -pipe   -Dxregcomp=regcomp -Dxre_exec=re_exec -Dxregexec=regexec -Dxre_search=re_search -Dxre_compile_fastmap=re_compile_fastmap -Dxregerror=regerror -Dxre_comp=re_comp -Dxre_set_syntax=re_set_syntax -DHAVE_CONFIG_H -DRL_NO_COMPAT -DMI_OUT=1 -DTUI=1 -DDEBUGDIR=\"/usr/lib/debug\" -I. -I/usr/src/gnu/usr.bin/gdb/libgdb/../arch/i386 -I/usr/src/gnu/usr.bin/gdb/libgdb/../../binutils/libbfd -I/usr/src/gnu/usr.bin/gdb/libgdb/../../binutils/libbfd/i386 -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb/config -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/binutils/include -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/include -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/binutils/bfd -I/usr/obj/usr/src/gnu/usr.bin/gdb/libgdb/../../../lib/libreadline/readline/.. -std=gnu99 -fstack-protector-strong   -Qunused-arguments -c /usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb/valops.c -o valops.o
--- all_subdir_lib ---
--- h_regex ---
cc -O2 -pipe -I/usr/src/contrib/netbsd-tests/lib/libc/regex -I/usr/src/lib/libc/regex -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments  -o h_regex main.o split.o debug.o  
--- exhaust_test ---
(cd /usr/src/lib/libc/tests/regex &&  DEPENDFILE=.depend.exhaust_test  NO_SUBDIR=1 make -f /usr/src/lib/libc/tests/regex/Makefile _RECURSING_PROGS=  PROG=exhaust_test )
--- t_exhaust.o ---
cc  -O2 -pipe   -I/usr/src/contrib/netbsd-tests/lib/libc/regex -DREGEX_SPENCER -I/usr/src/lib/libnetbsd -I/usr/src/contrib/netbsd-tests -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c -o t_exhaust.o
--- all_subdir_kerberos5 ---
--- rd_priv.po ---
cc  -pg  -O2 -pipe   -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/asn1  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/roken  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/ipc  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/base -I. -DHAVE_CONFIG_H -I/usr/src/kerberos5/lib/libkrb5/../../include -std=gnu99 -fstack-protector-strong   -Qunused-arguments -c /usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5/rd_priv.c -o rd_priv.po
--- all_subdir_lib ---
--- exhaust_test ---
cc -O2 -pipe -I/usr/src/contrib/netbsd-tests/lib/libc/regex -DREGEX_SPENCER -I/usr/src/lib/libnetbsd -I/usr/src/contrib/netbsd-tests -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments  -L/usr/obj/usr/src//lib/libnetbsd -o exhaust_test t_exhaust.o  -lnetbsd -lprivateatf-c
--- all_subdir_rescue ---
--- pass3.o ---
cc  -O2 -pipe   -I/usr/src/sbin/fsdb/../fsck_ffs -DRESCUE -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/sbin/fsdb/../fsck_ffs/pass3.c -o pass3.o
--- all_subdir_lib ---
--- regex_att_test ---
(cd /usr/src/lib/libc/tests/regex &&  DEPENDFILE=.depend.regex_att_test  NO_SUBDIR=1 make -f /usr/src/lib/libc/tests/regex/Makefile _RECURSING_PROGS=  PROG=regex_att_test )
--- t_regex_att.o ---
cc  -O2 -pipe   -I/usr/src/contrib/netbsd-tests/lib/libc/regex -DREGEX_SPENCER -I/usr/src/lib/libnetbsd -I/usr/src/contrib/netbsd-tests -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/contrib/netbsd-tests/lib/libc/regex/t_regex_att.c -o t_regex_att.o
--- all_subdir_rescue ---
--- pass4.o ---
cc  -O2 -pipe   -I/usr/src/sbin/fsdb/../fsck_ffs -DRESCUE -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/sbin/fsdb/../fsck_ffs/pass4.c -o pass4.o
--- all_subdir_kerberos5 ---
--- rd_rep.po ---
cc  -pg  -O2 -pipe   -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/asn1  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/roken  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/ipc  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/base -I. -DHAVE_CONFIG_H -I/usr/src/kerberos5/lib/libkrb5/../../include -std=gnu99 -fstack-protector-strong   -Qunused-arguments -c /usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5/rd_rep.c -o rd_rep.po
--- all_subdir_rescue ---
--- pass5.o ---
cc  -O2 -pipe   -I/usr/src/sbin/fsdb/../fsck_ffs -DRESCUE -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/sbin/fsdb/../fsck_ffs/pass5.c -o pass5.o
--- all_subdir_lib ---
--- regex_att_test ---
cc -O2 -pipe -I/usr/src/contrib/netbsd-tests/lib/libc/regex -DREGEX_SPENCER -I/usr/src/lib/libnetbsd -I/usr/src/contrib/netbsd-tests -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments  -L/usr/obj/usr/src//lib/libnetbsd -o regex_att_test t_regex_att.o  -lnetbsd -lutil -lprivateatf-c
--- regex_test ---
echo '#! /usr/libexec/atf-sh' > regex_test.tmp
cat /usr/src/contrib/netbsd-tests/lib/libc/regex/t_regex.sh >>regex_test.tmp
chmod +x regex_test.tmp
mv regex_test.tmp regex_test
--- Kyuafile.auto ---
===> lib/libc/tests/rpc (all)
--- rpc_test ---
(cd /usr/src/lib/libc/tests/rpc &&  DEPENDFILE=.depend.rpc_test  NO_SUBDIR=1 make -f /usr/src/lib/libc/tests/rpc/Makefile _RECURSING_PROGS=  PROG=rpc_test )
make[7]: make[7]: don't know how to make .o. Stop

make[7]: stopped in /usr/src/lib/libc/tests/rpc
*** [rpc_test] Error code 2

make[6]: stopped in /usr/src/lib/libc/tests/rpc
1 error

make[6]: stopped in /usr/src/lib/libc/tests/rpc
*** [all] Error code 2

make[5]: stopped in /usr/src/lib/libc/tests
1 error

make[5]: stopped in /usr/src/lib/libc/tests
*** [all] Error code 2

make[4]: stopped in /usr/src/lib/libc
1 error

make[4]: stopped in /usr/src/lib/libc
--- all_subdir_kerberos5 ---
A failure has been detected in another branch of the parallel make

make[5]: stopped in /usr/src/kerberos5/lib/libkrb5
*** [all] Error code 2

make[4]: stopped in /usr/src/kerberos5/lib
1 error

make[4]: stopped in /usr/src/kerberos5/lib
--- all_subdir_lib ---
*** [all_subdir_libc] Error code 2

make[3]: stopped in /usr/src/lib
1 error

make[3]: stopped in /usr/src/lib
--- all_subdir_kerberos5 ---
*** [all_subdir_lib] Error code 2

make[3]: stopped in /usr/src/kerberos5
1 error

make[3]: stopped in /usr/src/kerberos5
*** [all_subdir_kerberos5] Error code 2

make[2]: stopped in /usr/src
--- all_subdir_lib ---
*** [all_subdir_lib] Error code 2

make[2]: stopped in /usr/src
--- all_subdir_rescue ---
A failure has been detected in another branch of the parallel make

make[6]: stopped in /usr/src/sbin/fsdb
*** [fsdb_make] Error code 2

make[5]: stopped in /usr/obj/usr/src/rescue/rescue
1 error

make[5]: stopped in /usr/obj/usr/src/rescue/rescue
*** [objs] Error code 2

make[4]: stopped in /usr/src/rescue/rescue
1 error

make[4]: stopped in /usr/src/rescue/rescue
*** [all] Error code 2

make[3]: stopped in /usr/src/rescue
1 error

make[3]: stopped in /usr/src/rescue
*** [all_subdir_rescue] Error code 2

make[2]: stopped in /usr/src
--- all_subdir_gnu ---
A failure has been detected in another branch of the parallel make

make[6]: stopped in /usr/src/gnu/usr.bin/gdb/libgdb
*** [all] Error code 2

make[5]: stopped in /usr/src/gnu/usr.bin/gdb
1 error

make[5]: stopped in /usr/src/gnu/usr.bin/gdb
*** [all_subdir_gdb] Error code 2

make[4]: stopped in /usr/src/gnu/usr.bin
1 error

make[4]: stopped in /usr/src/gnu/usr.bin
*** [all_subdir_usr.bin] Error code 2

make[3]: stopped in /usr/src/gnu
1 error

make[3]: stopped in /usr/src/gnu
*** [all_subdir_gnu] Error code 2

make[2]: stopped in /usr/src
4 errors

make[2]: stopped in /usr/src
*** [everything] Error code 2

make[1]: stopped in /usr/src
1 error

make[1]: stopped in /usr/src
*** [buildworld] Error code 2

make: stopped in /usr/src
1 error

make: stopped in /usr/src
Build step 'Execute shell' marked build as failure
[PostBuildScript] - Execution post build scripts.
[FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson6372661437055574473.sh
+ export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin'
+ export 'jname=FreeBSD_HEAD_i386'
+ echo 'clean up jail FreeBSD_HEAD_i386'
clean up jail FreeBSD_HEAD_i386
+ sudo jail -r FreeBSD_HEAD_i386
+ sudo ifconfig igb0 inet6 2610:1c1:1:607c::106:1 -alias
+ sudo umount FreeBSD_HEAD_i386/usr/src
+ sudo umount FreeBSD_HEAD_i386/dev
+ sudo rm -fr FreeBSD_HEAD_i386
+ true
+ sudo chflags -R noschg FreeBSD_HEAD_i386
+ sudo rm -fr FreeBSD_HEAD_i386
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any
Received on Wed Nov 25 2015 - 21:16:47 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:41:01 UTC