From owner-freebsd-current@FreeBSD.ORG Sun Mar 1 01:31:42 2015 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8C2AC963; Sun, 1 Mar 2015 01:31:42 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 76124900; Sun, 1 Mar 2015 01:31:42 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 542EAA44; Sun, 1 Mar 2015 01:31:42 +0000 (UTC) Date: Sun, 1 Mar 2015 01:31:35 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@FreeBSD.org, freebsd-current@freebsd.org, loos@FreeBSD.org, rstone@FreeBSD.org, arybchik@FreeBSD.org, markj@FreeBSD.org, adrian@FreeBSD.org, ngie@FreeBSD.org, alc@FreeBSD.org, kib@FreeBSD.org, kan@FreeBSD.org Message-ID: <2106876404.49.1425173501970.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1887508547.48.1425163799584.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1887508547.48.1425163799584.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: FreeBSD_HEAD #2473 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: FAILURE X-Mailman-Approved-At: Sun, 01 Mar 2015 04:10:03 +0000 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Mar 2015 01:31:42 -0000 See 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:=09=09https://reviews.freebsd.org/D1882 Reviewed by:=09=09=09jfv MFC after:=09=09=091 month Sponsored by:=09=09=09Sandvine Inc [rstone] Allow Illumos code to co-exist with nv(9) Differential Revision:=09=09https://reviews.freebsd.org/D1881 Reviewed by:=09=09=09jfv, will Suggested by:=09=09=09pjd MFC after:=09=09=091 month Sponsored by:=09=09=09Sandvine 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:=09=09https://reviews.freebsd.org/D1880 Reviewers:=09=09=09jfv MFC after:=09=09=091 month Sponsored by:=09=09=09Sandvine 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:=09=09https://reviews.freebsd.org/D1879 Reviewed by:=09=09=09pjd, jfv MFC after:=09=09=091 month Sponsored by:=09=09=09Sandvine 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:=09=09https://reviews.freebsd.org/D1878 Reviewed by:=09=09=09pjd, jfv MFC After:=09=09=091 month Sponsored by:=09=09=09Sandvine Inc. [rstone] Implement asprintf in libkern Differential Revision:=09=09https://reviews.freebsd.org/D1877 Reviewed by:=09=09=09pjd, jfv MFC After:=09=09=091 month Sponsored by:=09=09=09Sandvine Inc. [rstone] Extend the unit test to fix the bug caught in r277925 Differential Revision:=09=09https://reviews.freebsd.org/D1888 MFC After:=09=09=091 month Sponsored by:=09=09=09Sandvine Inc. [rstone] Add tests for dnvlist_take_* Differential Revision:=09=09https://reviews.freebsd.org/D1876 Reviewed by:=09=09=09jfv, pjd MFC after:=09=09=091 month Sponsored by:=09=09=09Sandvine Inc. [rstone] Add tests for dnv_get_* Differential Revision:=09=09https://reviews.freebsd.org/D1875 Reviewed by:=09=09=09jfv, pjd MFC after:=09=09=091 month Sponsored by:=09=09=09Sandvine Inc. [rstone] Add tests for nvlist_free* functions Differential Revision:=09=09https://reviews.freebsd.org/D1874 Reviewed by:=09=09=09jfv, pjd MFC after:=09=09=091 month Sponsored by:=09=09=09Sandvine Inc. [rstone] Add tests for nvlist_take_* Differential Revision:=09=09https://reviews.freebsd.org/D1873 Reviewed by:=09=09=09jfv, pjd MFC after:=09=09=091 month Sponsored by:=09=09=09Sandvine Inc. [rstone] Add test cases for nvlist_move_* Differential Revision:=09=09https://reviews.freebsd.org/D1872 Reviewed by:=09=09=09jfv, pjd MFC after:=09=09=091 month Sponsored by:=09=09=09Sandvine Inc. [rstone] Add tests for nvlist_pack/unpack Differential Revision:=09=09https://reviews.freebsd.org/D1871 Reviewed by:=09=09=09jfv, pjd MFC after:=09=09=091 month Sponsored by:=09=09=09Sandvine Inc. [rstone] Add tests for nvlist_clone Differential Revision:=09=09https://reviews.freebsd.org/D1870 Reviewed by:=09=09=09pjd, jfv MFC after:=09=09=091 month Sponsored by:=09=09=09Sandvine Inc [rstone] Tests of basic nvlist add functions Differential Revision:=09=09https://reviews.freebsd.org/D1869 Reviewed by:=09=09=09jfv, pjd MFC after:=09=09=091 month Sponsored by:=09=09=09Sandvine 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:=09=09https://reviews.freebsd.org/D1869 Reviewed by:=09=09=09jfv, pjd MFC after:=09=09=091 month Sponsored by:=09=09=09Sandvine Inc. [rstone] Make libnv headers includable from C++ Differential Revision:=09=09https://reviews.freebsd.org/D1868 Reviewed by:=09=09=09jfv, pjd MFC after:=09=09=091 month Sponsored by:=09=09=09Sandvine Inc. [adrian] Add another register definition for the AR8327. Obtained from:=09OpenWRT [markj] Remove the old DTrace test suite makefile - it was somewhat primiti= ve and mostly unmaintained, and it has been superseded by the infrastructure added in r279418. Reviewed by:=09ngie Sponsored by:=09EMC / 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 whe= n 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:=09ngie Sponsored by:=09EMC / Isilon Storage Division [markj] Use the -shared option to create a shared library. MFC after:=091 week [markj] Remove a leading tab that causes a make(1) error when running the t= est. MFC after:=091 week [markj] Only kill sleep processes that were forked from the test script. MFC after:=091 week [markj] Stop hard-coding an incorrect path to rm(1). MFC after:=091 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:=091 week X-MFC-With:=09r261495, 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 activate= d 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:=09=09https://reviews.freebsd.org/D1989 Reviewed by:=09=09=09kib Reported by: =09=09=09Brainy Code Scanner, by Maxime Villard. ------------------------------------------ [...truncated 156850 lines...] atfu_tc_nvlist_add_string__single_insert ^ :1407:1: error: redefinition of 'atfu_tcptr_nvlist_add_string__single_ins= ert' ATF_TEST_CASE_WITHOUT_HEAD(nvlist_add_string__single_insert); ^ :46:30: note: expanded from macro 'ATF_TES= T_CASE_WITHOUT_HEAD' static atfu_tc_ ## name* atfu_tcptr_ ## name; \ ^ :3:1: note: expanded from here atfu_tcptr_nvlist_add_string__single_insert ^ :161:1: note: previous definition is here ATF_TEST_CASE_WITHOUT_HEAD(nvlist_add_string__single_insert); ^ :46:30: note: expanded from macro 'ATF_TES= T_CASE_WITHOUT_HEAD' static atfu_tc_ ## name* atfu_tcptr_ ## name; \ ^ :76:1: note: expanded from here atfu_tcptr_nvlist_add_string__single_insert ^ :1407:1: error: redefinition of 'atfu_tc_nvlist_add_string__single_insert= ' ATF_TEST_CASE_WITHOUT_HEAD(nvlist_add_string__single_insert); ^ :47:23: note: expanded from macro 'ATF_TES= T_CASE_WITHOUT_HEAD' atfu_tc_ ## name::atfu_tc_ ## name(void) : atf::tests::tc(#name, false)= {} \ ^ :3:1: note: expanded from here atfu_tc_nvlist_add_string__single_insert ^ :161:1: note: previous definition is here ATF_TEST_CASE_WITHOUT_HEAD(nvlist_add_string__single_insert); ^ :47:23: note: expanded from macro 'ATF_TES= T_CASE_WITHOUT_HEAD' atfu_tc_ ## name::atfu_tc_ ## name(void) : atf::tests::tc(#name, false)= {} \ ^ :78:1: note: expanded from here atfu_tc_nvlist_add_string__single_insert ^ fatal error: too many errors emitted, stopping now [-ferror-limit=3D] --- sbin.all__D --- =3D=3D=3D> sbin/geom/class/virstor (all) --- secure.all__D --- --- des_old2.po --- cc -pg -O2 -pipe -DTERMIOS -DANSI_SOURCE -I -I -I -DOPENSSL_THREADS -DDSO_DLFCN -D= HAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_A= SM -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 -I -I -std=3Dgnu89 -fstack-protector -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Wno-parentheses -Qunused-arguments -c -o des_old2.po --- sbin.all__D --- --- binstream.So --- cc -fpic -DPIC -O2 -pipe -I -std=3Dgnu99 -fstack-protector -Wsystem= -headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-pr= ototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Ww= rite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subsc= ripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -W= no-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-u= nused-const-variable -Qunused-arguments -c -o binstream.So --- secure.all__D --- --- ecb3_enc.po --- cc -pg -O2 -pipe -DTERMIOS -DANSI_SOURCE -I -I -I -DOPENSSL_THREADS -DDSO_DLFCN -D= HAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_A= SM -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 -I -I -std=3Dgnu89 -fstack-protector -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Wno-parentheses -Qunused-arguments -c -o ecb3_enc.po --- sbin.all__D --- --- g_virstor_md.So --- cc -fpic -DPIC -O2 -pipe -I -std=3Dgnu99 -fstack-protector -Wsystem= -headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-pr= ototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Ww= rite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subsc= ripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -W= no-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-u= nused-const-variable -Qunused-arguments -c -o g_virstor_md.So --- secure.all__D --- --- ecb_enc.po --- cc -pg -O2 -pipe -DTERMIOS -DANSI_SOURCE -I -I -I -DOPENSSL_THREADS -DDSO_DLFCN -D= HAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_A= SM -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 -I -I -std=3Dgnu89 -fstack-protector -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Wno-parentheses -Qunused-arguments -c -o ecb_enc.po --- sbin.all__D --- --- geom_virstor.So --- cc -fpic -DPIC -O2 -pipe -I -std=3Dgnu99 -fstack-protector -Wsystem= -headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-pr= ototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Ww= rite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subsc= ripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -W= no-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-u= nused-const-variable -Qunused-arguments -c -o geom_virstor.So --- secure.all__D --- --- ede_cbcm_enc.po --- cc -pg -O2 -pipe -DTERMIOS -DANSI_SOURCE -I -I -I -DOPENSSL_THREADS -DDSO_DLFCN -D= HAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_A= SM -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 -I -I -std=3Dgnu89 -fstack-protector -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Wno-parentheses -Qunused-arguments -c -o ede_cbcm_enc.po --- share.all__D --- =3D=3D=3D> share/i18n/esdb/DEC (all) --- sbin.all__D --- --- subr.So --- cc -fpic -DPIC -O2 -pipe -I -std=3Dgnu99 -fstack-protector -Wsystem= -headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-pr= ototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Ww= rite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subsc= ripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -W= no-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-u= nused-const-variable -Qunused-arguments -c -o subr.So --- share.all__D --- =3D=3D=3D> share/i18n/esdb/EUC (all) --- secure.all__D --- --- enc_read.po --- cc -pg -O2 -pipe -DTERMIOS -DANSI_SOURCE -I -I -I -DOPENSSL_THREADS -DDSO_DLFCN -D= HAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_A= SM -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 -I -I -std=3Dgnu89 -fstack-protector -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Wno-parentheses -Qunused-arguments -c -o enc_read.po --- share.all__D --- =3D=3D=3D> share/i18n/esdb/EBCDIC (all) --- secure.all__D --- --- enc_writ.po --- cc -pg -O2 -pipe -DTERMIOS -DANSI_SOURCE -I -I -I -DOPENSSL_THREADS -DDSO_DLFCN -D= HAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_A= SM -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 -I -I -std=3Dgnu89 -fstack-protector -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Wno-parentheses -Qunused-arguments -c -o enc_writ.po --- share.all__D --- =3D=3D=3D> share/i18n/esdb/GB (all) --- sbin.all__D --- --- gvirstor.8.gz --- gzip -cn > gvirstor.8.gz --- geom_virstor.so --- building shared library geom_virstor.so --- share.all__D --- =3D=3D=3D> share/i18n/esdb/GEORGIAN (all) --- secure.all__D --- --- fcrypt.po --- cc -pg -O2 -pipe -DTERMIOS -DANSI_SOURCE -I -I -I -DOPENSSL_THREADS -DDSO_DLFCN -D= HAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_A= SM -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 -I -I -std=3Dgnu89 -fstack-protector -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Wno-parentheses -Qunused-arguments -c -o fcrypt.po --- share.all__D --- =3D=3D=3D> share/i18n/esdb/ISO-2022 (all) --- sbin.all__D --- --- all_subdir_ggate --- =3D=3D=3D> sbin/ggate (all) --- _sub.all --- =3D=3D=3D> sbin/ggate/ggatec (all) --- share.all__D --- =3D=3D=3D> share/i18n/esdb/ISO-8859 (all) --- sbin.all__D --- --- ggatec.o --- cc -O2 -pipe -DMAX_SEND_SIZE=3D32768 -DLIBGEOM -I -std=3Dgnu99 -fstack= -protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-pa= rameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-t= ype -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 -Qu= nused-arguments -c --- secure.all__D --- --- ofb64ede.po --- cc -pg -O2 -pipe -DTERMIOS -DANSI_SOURCE -I -I -I -DOPENSSL_THREADS -DDSO_DLFCN -D= HAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_A= SM -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 -I -I -std=3Dgnu89 -fstack-protector -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Wno-parentheses -Qunused-arguments -c -o ofb64ede.po --- share.all__D --- =3D=3D=3D> share/i18n/esdb/ISO646 (all) --- secure.all__D --- --- ofb64enc.po --- cc -pg -O2 -pipe -DTERMIOS -DANSI_SOURCE -I -I -I -DOPENSSL_THREADS -DDSO_DLFCN -D= HAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_A= SM -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 -I -I -std=3Dgnu89 -fstack-protector -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Wno-parentheses -Qunused-arguments -c -o ofb64enc.po --- ofb_enc.po --- cc -pg -O2 -pipe -DTERMIOS -DANSI_SOURCE -I -I -I -DOPENSSL_THREADS -DDSO_DLFCN -D= HAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_A= SM -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 -I -I -std=3Dgnu89 -fstack-protector -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Wno-parentheses -Qunused-arguments -c -o ofb_enc.po --- share.all__D --- =3D=3D=3D> share/i18n/esdb/KAZAKH (all) --- sbin.all__D --- --- ggate.o --- cc -O2 -pipe -DMAX_SEND_SIZE=3D32768 -DLIBGEOM -I -std=3Dgnu99 -fstack= -protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-pa= rameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-t= ype -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 -Qu= nused-arguments -c --- share.all__D --- =3D=3D=3D> share/i18n/esdb/KOI (all) --- secure.all__D --- --- pcbc_enc.po --- cc -pg -O2 -pipe -DTERMIOS -DANSI_SOURCE -I -I -I -DOPENSSL_THREADS -DDSO_DLFCN -D= HAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_A= SM -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 -I -I -std=3Dgnu89 -fstack-protector -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Wno-parentheses -Qunused-arguments -c -o pcbc_enc.po --- share.all__D --- =3D=3D=3D> share/i18n/esdb/MISC (all) =3D=3D=3D> share/i18n/esdb/TCVN (all) --- secure.all__D --- --- qud_cksm.po --- cc -pg -O2 -pipe -DTERMIOS -DANSI_SOURCE -I -I -I -DOPENSSL_THREADS -DDSO_DLFCN -D= HAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_A= SM -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 -I -I -std=3Dgnu89 -fstack-protector -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Wno-parentheses -Qunused-arguments -c -o qud_cksm.po --- share.all__D --- =3D=3D=3D> share/i18n/esdb/UTF (all) --- sbin.all__D --- --- ggatec.8.gz --- gzip -cn > ggatec.8.gz --- ggatec --- cc -O2 -pipe -DMAX_SEND_SIZE=3D32768 -DLIBGEOM -I -std=3Dgnu99 -fstack= -protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-pa= rameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-t= ype -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 -Qu= nused-arguments -o ggatec ggatec.o ggate.o -lgeom -lutil -lpthread --- secure.all__D --- --- rand_key.po --- cc -pg -O2 -pipe -DTERMIOS -DANSI_SOURCE -I -I -I -DOPENSSL_THREADS -DDSO_DLFCN -D= HAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_A= SM -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 -I -I -std=3Dgnu89 -fstack-protector -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Wno-parentheses -Qunused-arguments -c -o rand_key.po --- sbin.all__D --- =3D=3D=3D> sbin/ggate/ggated (all) --- share.all__D --- =3D=3D=3D> share/keys (all) --- lib.all__D --- 20 errors generated. --- share.all__D --- --- _sub.all --- =3D=3D=3D> share/keys/pkg (all) --- lib.all__D --- *** [nv_tests.o] Error code 1 make[6]: stopped in 1 error make[6]: stopped in *** [nv_tests] Error code 2 make[5]: stopped in 1 error make[5]: stopped in *** [_sub.all] Error code 2 make[4]: stopped in 1 error make[4]: stopped in *** [all_subdir_libnv] Error code 2 make[3]: stopped in 1 error make[3]: stopped in --- sbin.all__D --- A failure has been detected in another branch of the parallel make make[5]: stopped in *** [_sub.all] Error code 2 make[4]: stopped in --- lib.all__D --- *** [lib.all__D] Error code 2 make[2]: stopped in --- sbin.all__D --- 1 error make[4]: stopped in *** [all_subdir_ggate] Error code 2 make[3]: stopped in 1 error make[3]: stopped in *** [sbin.all__D] Error code 2 make[2]: stopped in --- secure.all__D --- A failure has been detected in another branch of the parallel make make[5]: stopped in *** [_sub.all] Error code 2 make[4]: stopped in 1 error make[4]: stopped in *** [_sub.all] Error code 2 make[3]: stopped in 1 error make[3]: stopped in *** [secure.all__D] Error code 2 make[2]: stopped in --- share.all__D --- A failure has been detected in another branch of the parallel make make[5]: stopped in *** [_sub.all] Error code 2 make[4]: stopped in 1 error make[4]: stopped in *** [_sub.all] Error code 2 make[3]: stopped in 1 error make[3]: stopped in *** [share.all__D] Error code 2 make[2]: stopped in 4 errors make[2]: stopped in *** [everything] Error code 2 make[1]: stopped in 1 error make[1]: stopped in *** [buildworld] Error code 2 make: stopped in 1 error make: stopped in Build step 'Execute shell' marked build as failure