Build failed in Jenkins: FreeBSD_HEAD #2473

From: <jenkins-admin_at_freebsd.org>
Date: Sun, 1 Mar 2015 01:31:35 +0000 (GMT)
See <https://jenkins.freebsd.org/job/FreeBSD_HEAD/2473/changes>

Changes:

[rstone] Add macros to make code compile in kernel

Make it possible to compile libnv in the kernel.  Mostly this
involves wrapping functions that have a different signature in
the kernel and in userland (e.g. malloc()) in a macro that will
conditionally expand to the right API depending on whether the
code is being compiled for the kernel or not.

I have also #ifdef'ed out all of file descriptor-handling code,
as well as the unsafe varargs functions.

Differential Revision:		https://reviews.freebsd.org/D1882
Reviewed by:			jfv
MFC after:			1 month
Sponsored by:			Sandvine Inc

[rstone] Allow Illumos code to co-exist with nv(9)

Differential Revision:		https://reviews.freebsd.org/D1881
Reviewed by:			jfv, will
Suggested by:			pjd
MFC after:			1 month
Sponsored by:			Sandvine Inc

[rstone] Prevent creation of an invalid nvlist

If an nvlist is set as a child of another nvlist with
nvlist_move_nvlist then fail the operation and set the parent
nvlist to the error state.

Differential Revision:		https://reviews.freebsd.org/D1880
Reviewers:			jfv
MFC after:			1 month
Sponsored by:			Sandvine Inc

[rstone] Don't allocate memory for operations that do not insert

Almost every operation performed on an nvlist was allocating a
new string to hold the key name.  The nvlist_exists* family of
functions would always return false if they failed to allocate
the string.  The rest of the functions would outright abort().
Fix the non-varargs variants of the functions to perform the
requested operations directly and the varargs versions to
allocate the string and call into the non-varargs versions.
The varargs versions are still broken and really can't be fixed,
so we might consider axing them entirely.  However, now the non-
varargs functions are always safe to call.

Differential Revision:		https://reviews.freebsd.org/D1879
Reviewed by:			pjd, jfv
MFC after:			1 month
Sponsored by:			Sandvine Inc.

[rstone] Add function to force an nvlist into the error state

Add an nvlist_set_error() function that can be used to force an
nvlist into the error state.  This is useful both for writing
tests and for writing APIs that use nvlists internally.

Differential Revision:		https://reviews.freebsd.org/D1878
Reviewed by:			pjd, jfv
MFC After:			1 month
Sponsored by:			Sandvine Inc.

[rstone] Implement asprintf in libkern

Differential Revision:		https://reviews.freebsd.org/D1877
Reviewed by:			pjd, jfv
MFC After:			1 month
Sponsored by:			Sandvine Inc.

[rstone] Extend the unit test to fix the bug caught in r277925

Differential Revision:		https://reviews.freebsd.org/D1888
MFC After:			1 month
Sponsored by:			Sandvine Inc.

[rstone] Add tests for dnvlist_take_*

Differential Revision:		https://reviews.freebsd.org/D1876
Reviewed by:			jfv, pjd
MFC after:			1 month
Sponsored by:			Sandvine Inc.

[rstone] Add tests for dnv_get_*

Differential Revision:		https://reviews.freebsd.org/D1875
Reviewed by:			jfv, pjd
MFC after:			1 month
Sponsored by:			Sandvine Inc.

[rstone] Add tests for nvlist_free* functions

Differential Revision:		https://reviews.freebsd.org/D1874
Reviewed by:			jfv, pjd
MFC after:			1 month
Sponsored by:			Sandvine Inc.

[rstone] Add tests for nvlist_take_*

Differential Revision:		https://reviews.freebsd.org/D1873
Reviewed by:			jfv, pjd
MFC after:			1 month
Sponsored by:			Sandvine Inc.

[rstone] Add test cases for nvlist_move_*

Differential Revision:		https://reviews.freebsd.org/D1872
Reviewed by:			jfv, pjd
MFC after:			1 month
Sponsored by:			Sandvine Inc.

[rstone] Add tests for nvlist_pack/unpack

Differential Revision:		https://reviews.freebsd.org/D1871
Reviewed by:			jfv, pjd
MFC after:			1 month
Sponsored by:			Sandvine Inc.

[rstone] Add tests for nvlist_clone

Differential Revision:		https://reviews.freebsd.org/D1870
Reviewed by:			pjd, jfv
MFC after:			1 month
Sponsored by:			Sandvine Inc

[rstone] Tests of basic nvlist add functions

Differential Revision:		https://reviews.freebsd.org/D1869
Reviewed by:			jfv, pjd
MFC after:			1 month
Sponsored by:			Sandvine Inc.

[rstone] Revert r279422.  My "apply patch and commit" script wasn't adding
new files properly.

Pointy hat to: rstone

[rstone] Tests of basic nvlist add functions

Differential Revision:		https://reviews.freebsd.org/D1869
Reviewed by:			jfv, pjd
MFC after:			1 month
Sponsored by:			Sandvine Inc.

[rstone] Make libnv headers includable from C++

Differential Revision:		https://reviews.freebsd.org/D1868
Reviewed by:			jfv, pjd
MFC after:			1 month
Sponsored by:			Sandvine Inc.

[adrian] Add another register definition for the AR8327.

Obtained from:	OpenWRT

[markj] Remove the old DTrace test suite makefile - it was somewhat primitive and
mostly unmaintained, and it has been superseded by the infrastructure added
in r279418.

Reviewed by:	ngie
Sponsored by:	EMC / Isilon Storage Divison

[markj] Add infrastructure to integrate the DTrace test suite with Kyua.

For each test category, we generate a script containing ATF test cases for
the tests under that category. Each test case simply runs dtest.pl (the
upstream test harness) with the corresponding test files. The exclude.sh
script is used to record info about tests which should be skipped or are
expected to fail; it is used to generate atf_skip and atf_expect_fail calls.
The genmakefiles.sh script can be used to regenerate the test makefiles when
new tests are brought it from upstream.

The test suite is currently not connected to the build as there is a small
number of lingering test issues which still need to be worked out. In the
meantime however, the test suite can be easily built and installed
manually from cddl/usr.sbin/dtrace/tests.

Reviewed by:	ngie
Sponsored by:	EMC / Isilon Storage Division

[markj] Use the -shared option to create a shared library.

MFC after:	1 week

[markj] Remove a leading tab that causes a make(1) error when running the test.

MFC after:	1 week

[markj] Only kill sleep processes that were forked from the test script.

MFC after:	1 week

[markj] Stop hard-coding an incorrect path to rm(1).

MFC after:	1 week

[rstone] Add a missing include of an options header.

watchdog.c does an #ifdef DDB but does not #include "opt_ddb.h".
Fixing this turned up a missing include file.

MFC after:	1 week
X-MFC-With:	r261495, r279410

[kan] Do not leak 'copy' buffer if bmap_truncate_indirect fails.

Reported by: Brainy Code Scanner, by Maxime Villard.
MFC after: 2 weeks

[ngie] Unbreak 'make depend' with sfxge by removing debugging code activated in the
INET || INET6 case

X-MFC with: r279398
Pointyhat to: arybchik

[rstone] Correct the use of an unitialized variable in sendfind_getobj()

When sendfile_getobj() is called on a DTYPE_SHM file, it never
initializes error, which is eventually returned to the caller.

Differential Revision:		https://reviews.freebsd.org/D1989
Reviewed by:			kib
Reported by: 			Brainy Code Scanner, by Maxime Villard.

------------------------------------------
[...truncated 156850 lines...]
atfu_tc_nvlist_add_string__single_insert
^
<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/lib/libnv/tests/nv_tests.cc>:1407:1: error: redefinition of 'atfu_tcptr_nvlist_add_string__single_insert'
ATF_TEST_CASE_WITHOUT_HEAD(nvlist_add_string__single_insert);
^
<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/tmp/usr/include/atf-c++/macros.hpp>:46:30: note: expanded from macro 'ATF_TEST_CASE_WITHOUT_HEAD'
    static atfu_tc_ ## name* atfu_tcptr_ ## name; \
                             ^
<scratch space>:3:1: note: expanded from here
atfu_tcptr_nvlist_add_string__single_insert
^
<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/lib/libnv/tests/nv_tests.cc>:161:1: note: previous definition is here
ATF_TEST_CASE_WITHOUT_HEAD(nvlist_add_string__single_insert);
^
<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/tmp/usr/include/atf-c++/macros.hpp>:46:30: note: expanded from macro 'ATF_TEST_CASE_WITHOUT_HEAD'
    static atfu_tc_ ## name* atfu_tcptr_ ## name; \
                             ^
<scratch space>:76:1: note: expanded from here
atfu_tcptr_nvlist_add_string__single_insert
^
<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/lib/libnv/tests/nv_tests.cc>:1407:1: error: redefinition of 'atfu_tc_nvlist_add_string__single_insert'
ATF_TEST_CASE_WITHOUT_HEAD(nvlist_add_string__single_insert);
^
<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/tmp/usr/include/atf-c++/macros.hpp>:47:23: note: expanded from macro 'ATF_TEST_CASE_WITHOUT_HEAD'
    atfu_tc_ ## name::atfu_tc_ ## name(void) : atf::tests::tc(#name, false) {} \
                      ^
<scratch space>:3:1: note: expanded from here
atfu_tc_nvlist_add_string__single_insert
^
<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/lib/libnv/tests/nv_tests.cc>:161:1: note: previous definition is here
ATF_TEST_CASE_WITHOUT_HEAD(nvlist_add_string__single_insert);
^
<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/tmp/usr/include/atf-c++/macros.hpp>:47:23: note: expanded from macro 'ATF_TEST_CASE_WITHOUT_HEAD'
    atfu_tc_ ## name::atfu_tc_ ## name(void) : atf::tests::tc(#name, false) {} \
                      ^
<scratch space>:78:1: note: expanded from here
atfu_tc_nvlist_add_string__single_insert
^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
--- sbin.all__D ---
===> sbin/geom/class/virstor (all)
--- secure.all__D ---
--- des_old2.po ---
cc  -pg  -O2 -pipe   -DTERMIOS -DANSI_SOURCE -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/secure/lib/libcrypto> -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes> -std=gnu89 -fstack-protector -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-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/des/des_old2.c> -o des_old2.po
--- sbin.all__D ---
--- binstream.So ---
cc  -fpic -DPIC  -O2 -pipe   -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/geom/class/virstor/../..> -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/geom/class/virstor/../../../../sys/geom/virstor/binstream.c> -o binstream.So
--- secure.all__D ---
--- ecb3_enc.po ---
cc  -pg  -O2 -pipe   -DTERMIOS -DANSI_SOURCE -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/secure/lib/libcrypto> -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes> -std=gnu89 -fstack-protector -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-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/des/ecb3_enc.c> -o ecb3_enc.po
--- sbin.all__D ---
--- g_virstor_md.So ---
cc  -fpic -DPIC  -O2 -pipe   -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/geom/class/virstor/../..> -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/geom/class/virstor/../../../../sys/geom/virstor/g_virstor_md.c> -o g_virstor_md.So
--- secure.all__D ---
--- ecb_enc.po ---
cc  -pg  -O2 -pipe   -DTERMIOS -DANSI_SOURCE -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/secure/lib/libcrypto> -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes> -std=gnu89 -fstack-protector -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-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/des/ecb_enc.c> -o ecb_enc.po
--- sbin.all__D ---
--- geom_virstor.So ---
cc  -fpic -DPIC  -O2 -pipe   -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/geom/class/virstor/../..> -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/geom/class/virstor/geom_virstor.c> -o geom_virstor.So
--- secure.all__D ---
--- ede_cbcm_enc.po ---
cc  -pg  -O2 -pipe   -DTERMIOS -DANSI_SOURCE -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/secure/lib/libcrypto> -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes> -std=gnu89 -fstack-protector -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-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/des/ede_cbcm_enc.c> -o ede_cbcm_enc.po
--- share.all__D ---
===> share/i18n/esdb/DEC (all)
--- sbin.all__D ---
--- subr.So ---
cc  -fpic -DPIC  -O2 -pipe   -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/geom/class/virstor/../..> -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/geom/class/virstor/../../misc/subr.c> -o subr.So
--- share.all__D ---
===> share/i18n/esdb/EUC (all)
--- secure.all__D ---
--- enc_read.po ---
cc  -pg  -O2 -pipe   -DTERMIOS -DANSI_SOURCE -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/secure/lib/libcrypto> -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes> -std=gnu89 -fstack-protector -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-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/des/enc_read.c> -o enc_read.po
--- share.all__D ---
===> share/i18n/esdb/EBCDIC (all)
--- secure.all__D ---
--- enc_writ.po ---
cc  -pg  -O2 -pipe   -DTERMIOS -DANSI_SOURCE -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/secure/lib/libcrypto> -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes> -std=gnu89 -fstack-protector -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-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/des/enc_writ.c> -o enc_writ.po
--- share.all__D ---
===> share/i18n/esdb/GB (all)
--- sbin.all__D ---
--- gvirstor.8.gz ---
gzip -cn <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/geom/class/virstor/gvirstor.8> > gvirstor.8.gz
--- geom_virstor.so ---
building shared library geom_virstor.so
--- share.all__D ---
===> share/i18n/esdb/GEORGIAN (all)
--- secure.all__D ---
--- fcrypt.po ---
cc  -pg  -O2 -pipe   -DTERMIOS -DANSI_SOURCE -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/secure/lib/libcrypto> -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes> -std=gnu89 -fstack-protector -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-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/des/fcrypt.c> -o fcrypt.po
--- share.all__D ---
===> share/i18n/esdb/ISO-2022 (all)
--- sbin.all__D ---
--- all_subdir_ggate ---
===> sbin/ggate (all)
--- _sub.all ---
===> sbin/ggate/ggatec (all)
--- share.all__D ---
===> share/i18n/esdb/ISO-8859 (all)
--- sbin.all__D ---
--- ggatec.o ---
cc  -O2 -pipe   -DMAX_SEND_SIZE=32768 -DLIBGEOM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/ggate/ggatec/../shared> -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/ggate/ggatec/ggatec.c>
--- secure.all__D ---
--- ofb64ede.po ---
cc  -pg  -O2 -pipe   -DTERMIOS -DANSI_SOURCE -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/secure/lib/libcrypto> -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes> -std=gnu89 -fstack-protector -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-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/des/ofb64ede.c> -o ofb64ede.po
--- share.all__D ---
===> share/i18n/esdb/ISO646 (all)
--- secure.all__D ---
--- ofb64enc.po ---
cc  -pg  -O2 -pipe   -DTERMIOS -DANSI_SOURCE -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/secure/lib/libcrypto> -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes> -std=gnu89 -fstack-protector -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-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/des/ofb64enc.c> -o ofb64enc.po
--- ofb_enc.po ---
cc  -pg  -O2 -pipe   -DTERMIOS -DANSI_SOURCE -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/secure/lib/libcrypto> -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes> -std=gnu89 -fstack-protector -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-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/des/ofb_enc.c> -o ofb_enc.po
--- share.all__D ---
===> share/i18n/esdb/KAZAKH (all)
--- sbin.all__D ---
--- ggate.o ---
cc  -O2 -pipe   -DMAX_SEND_SIZE=32768 -DLIBGEOM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/ggate/ggatec/../shared> -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/ggate/ggatec/../shared/ggate.c>
--- share.all__D ---
===> share/i18n/esdb/KOI (all)
--- secure.all__D ---
--- pcbc_enc.po ---
cc  -pg  -O2 -pipe   -DTERMIOS -DANSI_SOURCE -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/secure/lib/libcrypto> -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes> -std=gnu89 -fstack-protector -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-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/des/pcbc_enc.c> -o pcbc_enc.po
--- share.all__D ---
===> share/i18n/esdb/MISC (all)
===> share/i18n/esdb/TCVN (all)
--- secure.all__D ---
--- qud_cksm.po ---
cc  -pg  -O2 -pipe   -DTERMIOS -DANSI_SOURCE -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/secure/lib/libcrypto> -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes> -std=gnu89 -fstack-protector -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-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/des/qud_cksm.c> -o qud_cksm.po
--- share.all__D ---
===> share/i18n/esdb/UTF (all)
--- sbin.all__D ---
--- ggatec.8.gz ---
gzip -cn <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/ggate/ggatec/ggatec.8> > ggatec.8.gz
--- ggatec ---
cc  -O2 -pipe   -DMAX_SEND_SIZE=32768 -DLIBGEOM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/ggate/ggatec/../shared> -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments  -o ggatec ggatec.o ggate.o  -lgeom  -lutil  -lpthread
--- secure.all__D ---
--- rand_key.po ---
cc  -pg  -O2 -pipe   -DTERMIOS -DANSI_SOURCE -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/obj/builds/FreeBSD_HEAD/secure/lib/libcrypto> -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp> -I<https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes> -std=gnu89 -fstack-protector -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-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto/../../../crypto/openssl/crypto/des/rand_key.c> -o rand_key.po
--- sbin.all__D ---
===> sbin/ggate/ggated (all)
--- share.all__D ---
===> share/keys (all)
--- lib.all__D ---
20 errors generated.
--- share.all__D ---
--- _sub.all ---
===> share/keys/pkg (all)
--- lib.all__D ---
*** [nv_tests.o] Error code 1

make[6]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/lib/libnv/tests>
1 error

make[6]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/lib/libnv/tests>
*** [nv_tests] Error code 2

make[5]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/lib/libnv/tests>
1 error

make[5]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/lib/libnv/tests>
*** [_sub.all] Error code 2

make[4]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/lib/libnv>
1 error

make[4]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/lib/libnv>
*** [all_subdir_libnv] Error code 2

make[3]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/lib>
1 error

make[3]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/lib>
--- sbin.all__D ---
A failure has been detected in another branch of the parallel make

make[5]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/ggate/ggated>
*** [_sub.all] Error code 2

make[4]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/ggate>
--- lib.all__D ---
*** [lib.all__D] Error code 2

make[2]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/>
--- sbin.all__D ---
1 error

make[4]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin/ggate>
*** [all_subdir_ggate] Error code 2

make[3]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin>
1 error

make[3]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/sbin>
*** [sbin.all__D] Error code 2

make[2]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/>
--- secure.all__D ---
A failure has been detected in another branch of the parallel make

make[5]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib/libcrypto>
*** [_sub.all] Error code 2

make[4]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib>
1 error

make[4]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure/lib>
*** [_sub.all] Error code 2

make[3]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure>
1 error

make[3]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/secure>
*** [secure.all__D] Error code 2

make[2]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/>
--- share.all__D ---
A failure has been detected in another branch of the parallel make

make[5]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/share/keys/pkg>
*** [_sub.all] Error code 2

make[4]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/share/keys>
1 error

make[4]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/share/keys>
*** [_sub.all] Error code 2

make[3]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/share>
1 error

make[3]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/share>
*** [share.all__D] Error code 2

make[2]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/>
4 errors

make[2]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/>
*** [everything] Error code 2

make[1]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/>
1 error

make[1]: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/>
*** [buildworld] Error code 2

make: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/>
1 error

make: stopped in <https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/>
Build step 'Execute shell' marked build as failure
Received on Sun Mar 01 2015 - 00:31:42 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:40:56 UTC