From owner-freebsd-current@freebsd.org Wed Nov 25 22:16:47 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D002BA37C0E; Wed, 25 Nov 2015 22:16:47 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id AA12713BC; Wed, 25 Nov 2015 22:16:47 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id DB34688E; Wed, 25 Nov 2015 22:16:47 +0000 (UTC) Date: Wed, 25 Nov 2015 22:16:46 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: lidl@FreeBSD.org, bdrewery@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <2077754732.171.1448489807861.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <665601706.165.1448483446533.JavaMail.jenkins@jenkins-9.freebsd.org> References: <665601706.165.1448483446533.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1764 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Nov 2015 22:16:47 -0000 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/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1764/cons= ole Change summaries: 291332 by bdrewery: Rename Makefile.inc1 to dtrace.test.mk to avoid clash with top-level Makefi= le.inc1. Discussed with:=09ngie, markj Sponsored by:=09EMC / 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:=091 week Sponsored by:=09EMC / 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:=09EMC / Isilon Storage Division MFC after:=091 week 291329 by bdrewery: Remove redundant DPSRCS which were already in SRCS. DPSRCS already contains all of SRCS. MFC after:=091 week Sponsored by:=09EMC / Isilon Storage Division 291328 by lidl: Have syslogd honor 'mesg' status when logging to users. PR:=09=09bin/196742 Submitted by:=09jef at mail acme com Approved by:=09rpaulo (mentor) Differential Revision:=09https://reviews.freebsd.org/D4270 291327 by bdrewery: Define a LIBDIR 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:=09EMC / 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 sha25= 6.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:=09EMC / Isilon Storage Division 291324 by bdrewery: META MODE: Fix MACHINE=3Dhost 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:=09EMC / Isilon Storage Division 291323 by bdrewery: Stop looking up the same id(1) results in sub-makes. Sponsored by:=09EMC / Isilon Storage Division 291322 by bdrewery: META MODE: Remove unneeded libmd.host dependency for xinstall.host. This is chasing r291026. Sponsored by:=09EMC / 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 d= ue 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:=09EMC / Isilon Storage Division 291320 by bdrewery: META MODE: Don't create .meta files when symlinking sources into the obj di= rectory. 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:=09EMC / Isilon Storage Division 291319 by bdrewery: META MODE: Add more hosttools needed pre-universe. Sponsored by:=09EMC / Isilon Storage Division 291318 by bdrewery: META MODE: Show PATH on errors. Sponsored by:=09EMC / 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:=09EMC / Isilon Storage Division The end of the build log: [...truncated 96239 lines...] --- getprotoent_test --- (cd /usr/src/lib/libc/tests/net && DEPENDFILE=3D.depend.getprotoent_test = NO_SUBDIR=3D1 make -f /usr/src/lib/libc/tests/net/Makefile _RECURSING_PROGS= =3D PROG=3Dgetprotoent_test ) --- all_subdir_kerberos5 --- --- prompter_posix.po --- cc -pg -O2 -pipe -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimd= al/lib/krb5 -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/a= sn1 -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/u= sr/src/kerberos5/lib/libkrb5/../../include -std=3Dgnu99 -fstack-protector-s= trong -Qunused-arguments -c /usr/src/kerberos5/lib/libkrb5/../../../crypt= o/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/u= sr/src/contrib/netbsd-tests -std=3Dgnu99 -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-tautol= ogical-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-func= tion -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch= -enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/contrib/ne= tbsd-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=3Dgnu99 -fstack-protector-strong -Wsystem-hea= ders -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wn= o-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologi= cal-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-functio= n -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-en= um -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=3D.depend.ether_aton_test N= O_SUBDIR=3D1 make -f /usr/src/lib/libc/tests/net/Makefile _RECURSING_PROGS= =3D PROG=3Dether_aton_test ) --- t_ether_aton.o --- cc -O2 -pipe -I/usr/src/lib/libc/tests/net -I/usr/src/lib/libnetbsd -I/u= sr/src/contrib/netbsd-tests -std=3Dgnu99 -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-tautol= ogical-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-func= tion -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch= -enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/contrib/ne= tbsd-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/heimd= al/lib/krb5 -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/a= sn1 -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/u= sr/src/kerberos5/lib/libkrb5/../../include -std=3Dgnu99 -fstack-protector-s= trong -Qunused-arguments -c /usr/src/kerberos5/lib/libkrb5/../../../crypt= o/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=3Dgnu99 -fst= ack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-un= initialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unu= sed-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parenth= eses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-t= ypedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-ar= guments -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/u= sr/src/contrib/netbsd-tests -std=3Dgnu99 -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-tautol= ogical-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-func= tion -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=3Dregcomp -Dxre_exec=3Dre_exec -Dxregexec=3Dreg= exec -Dxre_search=3Dre_search -Dxre_compile_fastmap=3Dre_compile_fastmap -D= xregerror=3Dregerror -Dxre_comp=3Dre_comp -Dxre_set_syntax=3Dre_set_syntax = -DHAVE_CONFIG_H -DRL_NO_COMPAT -DMI_OUT=3D1 -DTUI=3D1 -DDEBUGDIR=3D\"/usr/l= ib/debug\" -I. -I/usr/src/gnu/usr.bin/gdb/libgdb/../arch/i386 -I/usr/src/gn= u/usr.bin/gdb/libgdb/../../binutils/libbfd -I/usr/src/gnu/usr.bin/gdb/libgd= b/../../binutils/libbfd/i386 -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../= contrib/gdb/gdb -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/g= db/config -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/binutils/in= clude -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=3D= 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=3Dgnu99 -fstack-protector-strong -Wsystem-hea= ders -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wn= o-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologi= cal-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-functio= n -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-en= um -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 -lp= rivateatf-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_tes= t.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 --- =3D=3D=3D> lib/libc/tests/regex (all) --- h_regex --- (cd /usr/src/lib/libc/tests/regex && DEPENDFILE=3D.depend.h_regex NO_SUBD= IR=3D1 make -f /usr/src/lib/libc/tests/regex/Makefile _RECURSING_PROGS=3D = PROG=3Dh_regex ) --- main.o --- cc -O2 -pipe -I/usr/src/contrib/netbsd-tests/lib/libc/regex -I/usr/src/l= ib/libc/regex -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werro= r -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-bod= y -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/heimd= al/lib/krb5 -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/a= sn1 -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/u= sr/src/kerberos5/lib/libkrb5/../../include -std=3Dgnu99 -fstack-protector-s= trong -Qunused-arguments -c /usr/src/kerberos5/lib/libkrb5/../../../crypt= o/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/l= ib/libc/regex -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werro= r -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-bod= y -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=3Dgnu99 -fst= ack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-un= initialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unu= sed-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parenth= eses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-t= ypedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-ar= guments -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/l= ib/libc/regex -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werro= r -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-bod= y -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=3Dgnu99 -fst= ack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-un= initialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unu= sed-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parenth= eses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-t= ypedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-ar= guments -c /usr/src/sbin/fsdb/../fsck_ffs/pass2.c -o pass2.o --- all_subdir_gnu --- --- valops.o --- cc -O2 -pipe -Dxregcomp=3Dregcomp -Dxre_exec=3Dre_exec -Dxregexec=3Dreg= exec -Dxre_search=3Dre_search -Dxre_compile_fastmap=3Dre_compile_fastmap -D= xregerror=3Dregerror -Dxre_comp=3Dre_comp -Dxre_set_syntax=3Dre_set_syntax = -DHAVE_CONFIG_H -DRL_NO_COMPAT -DMI_OUT=3D1 -DTUI=3D1 -DDEBUGDIR=3D\"/usr/l= ib/debug\" -I. -I/usr/src/gnu/usr.bin/gdb/libgdb/../arch/i386 -I/usr/src/gn= u/usr.bin/gdb/libgdb/../../binutils/libbfd -I/usr/src/gnu/usr.bin/gdb/libgd= b/../../binutils/libbfd/i386 -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../= contrib/gdb/gdb -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/g= db/config -I/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/binutils/in= clude -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=3D= 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=3Dgnu99 -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 -W= no-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-co= nversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-pr= omoted-parameter -Qunused-arguments -o h_regex main.o split.o debug.o =20 --- exhaust_test --- (cd /usr/src/lib/libc/tests/regex && DEPENDFILE=3D.depend.exhaust_test NO= _SUBDIR=3D1 make -f /usr/src/lib/libc/tests/regex/Makefile _RECURSING_PROGS= =3D PROG=3Dexhaust_test ) --- t_exhaust.o --- cc -O2 -pipe -I/usr/src/contrib/netbsd-tests/lib/libc/regex -DREGEX_SPEN= CER -I/usr/src/lib/libnetbsd -I/usr/src/contrib/netbsd-tests -std=3Dgnu99 -= 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-pare= ntheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-loca= l-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/heimd= al/lib/krb5 -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/a= sn1 -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/u= sr/src/kerberos5/lib/libkrb5/../../include -std=3Dgnu99 -fstack-protector-s= trong -Qunused-arguments -c /usr/src/kerberos5/lib/libkrb5/../../../crypt= o/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=3Dgnu99 -fst= ack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-un= initialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unu= sed-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parenth= eses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-t= ypedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-ar= guments -L/usr/obj/usr/src//lib/libnetbsd -o exhaust_test t_exhaust.o -ln= etbsd -lprivateatf-c --- all_subdir_rescue --- --- pass3.o --- cc -O2 -pipe -I/usr/src/sbin/fsdb/../fsck_ffs -DRESCUE -std=3Dgnu99 -fst= ack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-un= initialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unu= sed-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parenth= eses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-t= ypedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-ar= guments -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=3D.depend.regex_att_test = NO_SUBDIR=3D1 make -f /usr/src/lib/libc/tests/regex/Makefile _RECURSING_PRO= GS=3D PROG=3Dregex_att_test ) --- t_regex_att.o --- cc -O2 -pipe -I/usr/src/contrib/netbsd-tests/lib/libc/regex -DREGEX_SPEN= CER -I/usr/src/lib/libnetbsd -I/usr/src/contrib/netbsd-tests -std=3Dgnu99 -= 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-pare= ntheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-loca= l-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=3Dgnu99 -fst= ack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-un= initialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unu= sed-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parenth= eses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-t= ypedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-ar= guments -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/heimd= al/lib/krb5 -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/a= sn1 -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/u= sr/src/kerberos5/lib/libkrb5/../../include -std=3Dgnu99 -fstack-protector-s= trong -Qunused-arguments -c /usr/src/kerberos5/lib/libkrb5/../../../crypt= o/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=3Dgnu99 -fst= ack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-un= initialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unu= sed-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parenth= eses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-t= ypedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-ar= guments -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=3Dgnu99 -fst= ack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-un= initialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unu= sed-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parenth= eses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-t= ypedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-ar= guments -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.tm= p chmod +x regex_test.tmp mv regex_test.tmp regex_test --- Kyuafile.auto --- =3D=3D=3D> lib/libc/tests/rpc (all) --- rpc_test --- (cd /usr/src/lib/libc/tests/rpc && DEPENDFILE=3D.depend.rpc_test NO_SUBDI= R=3D1 make -f /usr/src/lib/libc/tests/rpc/Makefile _RECURSING_PROGS=3D PRO= G=3Drpc_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=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b= in' + export 'jname=3DFreeBSD_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