From owner-freebsd-i386@freebsd.org Tue Jun 14 17:16:13 2016 Return-Path: Delivered-To: freebsd-i386@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 E2D72B72CE0; Tue, 14 Jun 2016 17:16:13 +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 D779B275B; Tue, 14 Jun 2016 17:16:13 +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 1C8D6DE9; Tue, 14 Jun 2016 17:16:14 +0000 (UTC) Date: Tue, 14 Jun 2016 17:16:13 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: andrew@FreeBSD.org, bdrewery@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1729617824.66.1465924574124.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #3390 - Failure 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: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Jun 2016 17:16:14 -0000 FreeBSD_HEAD_i386 - Build #3390 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3390/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3390/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3390/console Change summaries: 301891 by bdrewery: DIRDEPS_BUILD: Update dependencies Approved by: re (gjb) Sponsored by: EMC / Isilon Storage Division 301890 by andrew: Move the arm call to intr_pic_init_secondary earlier in the secondary CPU initialisation. This ensures it will complete before signalling to the boot CPU it has booted. This fixes a race with the GIC where the arm_gic_map may not be populated before it is used to bind interrupts leading to some interrupts becoming bound to no CPUs. Approved by: re (kib) Sponsored by: ABT Systems Ltd 301889 by bdrewery: WITH_META_MODE: Enable printing of some of make's environment on error. This will print a set of variables from make on error using MAKE_PRINT_VAR_ON_ERROR. It is already enabled for the DIRDEPS_BUILD. It may make sense to enable this in the non-meta mode as well once people are more used to its more verbose error output. This makes it much simpler to see which .meta file is used when a command files so that it may be inspected for the build command. Suggested by: sjg Approved by: re (implicit) Sponsored by: EMC / Isilon Storage Division 301888 by bdrewery: WITH_META_MODE: Lessen the filemon(4) requirement scope. - Move the sys.mk filemon requirement to bsd.init.mk as a warning. This is intended only to show when building directly in a subdirectory without filemon loaded. - Move the error into Makefile and only apply it when building from the META_TGT_WHITELIST target list. -DNO_FILEMON can be used to suppress both the warning and the error but makes WITH_META_MODE less useful. It will only compare build commands in this mode rather than track all dependencies. This fixes installing from a jail which doesn't need filemon in this phase [1]. Reported by: Nikolai Lifanov [1] Approved by: re (implicit) Sponsored by: EMC / Isilon Storage Division 301887 by bdrewery: WITH_META_MODE: Whitelist targets that are meta-mode-safe. META_TGT_WHITELIST is added to define which build targets are safe for meta mode. See comments for more details. This fixes 'make delete-old-libs' to properly show the interactive prompt. Approved by: re (implicit) Sponsored by: EMC / Isilon Storage Division 301886 by bdrewery: WITH_META_MODE: Set MK_META_MODE=no with -B. Using -B already sets .MAKE.MODE=compat but it was leaving MK_META_MODE set which could still cause other MK_META_MODE==yes checks to trigger. Approved by: re (implicit) Sponsored by: EMC / Isilon Storage Division 301885 by bdrewery: Add more missing .PHONY Approved by: re (implicit) Sponsored by: EMC / Isilon Storage Division 301884 by bdrewery: WITH_META_MODE: Fix rebuilding maketab outside of build-tools. The bsd.dep.mk yacc targets rely on only the .c file getting a .meta file. However the previous code here relying on only the .h file meant that it would be generated with a .meta file. r301285 made it so that the .h file is never expected to get a .meta file. To keep this restriction in place add in an extra dependency on the .c file so that it is generated at this time. It's a hack but the best for the patterns we have at the moment for handling build-tools and side-effect-generated files. Reported by: Mark Millard Approved by: re (implicit) Sponsored by: EMC / Isilon Storage Division 301883 by bdrewery: Define targets in same order as .ORDER This is a NOP but is done for style and to reduce confusion. Approved by: re (implicit) Sponsored by: EMC / Isilon Storage Division 301882 by bdrewery: WITH_META_MODE: Fix rescue rebuilding build-tools. This is the same issue as r297997. Approved by: re (implicit) Sponsored by: EMC / Isilon Storage Division 301881 by bdrewery: WITH_META_MODE: Fix bin/csh rebuilding tc.const.h This is the same issue as r297997, but was missed in it. The WARNS value changes between 'build-tools' (MK_WARNS=no) and 'everything' resulting in a rebuild of this file. Approved by: re (implicit) Sponsored by: EMC / Isilon Storage Division 301880 by bdrewery: WITH_META_MODE+WITH_DEBUG_FILES: Fix library symlinks causing bogus rebuilds. A simplified example of the library targets with WITH_DEBUG_FILES is: libgeom.so.5: libgeom.so.5.full cp libgeom.so.5.full libgeom.so.5 libgeom.so.5.full: ln -s libgeom.so.5 libgeom.so cc -o libgeom.so.5.full *.o Before, or without, WITH_DEBUG_FILES it is: libgeom.so.5: ln -s libgeom.so.5 libgeom.so cc -o libgeom.so.5 *.o The problem is that bmake considers the link source for the libgeom.so link in the libgeom.so.5.full target as being a dependency for libgeom.so.5.full. That resolves to libgeom.so.5. Thus a cyclic dependency is created. The result of this is that if libgeom.so.5 is created with a newer timestamp than libgeom.so.5.full, then libgeom.so.5.full will be rebuilt on the next build. This causes a chain reaction of everything in the build relinking, or hitting the problem itself. Moving the link creation to the target that actually creates libgeom.so.5 fixes the problem. The simplest fix here is to just duplicate the logic. Submitted by: sjg Approved by: re (implicit) The end of the build log: Started by an SCM change Building remotely on kyua4.nyi.freebsd.org (jailer) in workspace /jenkins/workspace/FreeBSD_HEAD_i386 Updating svn://svnmir.freebsd.org/base/head at revision '2016-06-14T17:14:35.668 +0000' U gnu/usr.bin/groff/src/libs/libbib/Makefile.depend U kerberos5/tools/asn1_compile/Makefile.depend U kerberos5/Makefile.inc U lib/libclang_rt/asan_cxx/Makefile.depend U lib/libclang_rt/profile/Makefile.depend U lib/libclang_rt/safestack/Makefile.depend U lib/libpam/static_libpam/Makefile.depend U libexec/fingerd/Makefile.depend U libexec/ftpd/Makefile.depend U libexec/rlogind/Makefile.depend U libexec/rshd/Makefile.depend U secure/usr.sbin/sshd/Makefile.depend U sys/arm/arm/mp_machdep.c U share/mk/local.sys.mk U share/mk/bsd.init.mk U share/mk/sys.mk U share/mk/bsd.crunchgen.mk U share/mk/bsd.lib.mk U tools/build/options/WITH_META_MODE U Makefile U usr.bin/awk/Makefile U bin/csh/Makefile At revision 301891 No emails were triggered. [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson7897130681456832487.sh + export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin' + export 'jname=FreeBSD_HEAD_i386' + echo 'clean up jail FreeBSD_HEAD_i386' clean up jail FreeBSD_HEAD_i386 + sudo jail -r FreeBSD_HEAD_i386 + true + sudo ifconfig igb0 inet6 2610:1c1:1:607c::104:1 -alias + true + sudo umount FreeBSD_HEAD_i386/usr/src + true + sudo umount FreeBSD_HEAD_i386/dev + true + sudo rm -fr FreeBSD_HEAD_i386 + sudo chflags -R noschg FreeBSD_HEAD_i386 + true + sudo rm -fr FreeBSD_HEAD_i386 [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson7029760778487003943.sh + export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin' + export 'jname=FreeBSD_HEAD_i386' + echo env: env: + /usr/bin/env BUILD_NUMBER=3390 HUDSON_SERVER_COOKIE=0657dbe3541f1b1a JOB_NAME=FreeBSD_HEAD_i386 LOGNAME=jenkins JAVA_HOME=/usr/local/openjdk8 SVN_URL=svn://svnmir.freebsd.org/base/head BUILDER_JAIL_IP=2610:1c1:1:607c::104:1 jname=FreeBSD_HEAD_i386 JENKINS_URL=https://jenkins.FreeBSD.org/ JENKINS_HOME=/usr/local/jenkins PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin JOB_BASE_NAME=FreeBSD_HEAD_i386 HUDSON_HOME=/usr/local/jenkins OLDPWD=/ BUILD_ID=3390 BUILDER_NETIF=igb0 JENKINS_SERVER_COOKIE=0657dbe3541f1b1a PWD=/jenkins/workspace/FreeBSD_HEAD_i386 BUILD_TAG=jenkins-FreeBSD_HEAD_i386-3390 NODE_LABELS=jailer kyua4.nyi.freebsd.org BUILD_DISPLAY_NAME=#3390 HOME=/jenkins USER=jenkins BUILD_URL=https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3390/ SVN_URL_1=svn://svnmir.freebsd.org/base/head SVN_REVISION=301891 SVN_REVISION_1=301891 BUILDER_JAIL_IP6=2610:1c1:1:607c::104:1 JOB_URL=https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/ SHELL=/bin/sh HUDSON_URL=https://jenkins.FreeBSD.org/ HUDSON_COOKIE=4133218a-da5a-4bea-b894-485ee4027f18 BUILDER_RESOLV_CONF=nameserver 2610:1c1:1:6002::100\nnameserver 2610:1c1:1:6002::200\n WORKSPACE=/jenkins/workspace/FreeBSD_HEAD_i386 NODE_NAME=kyua4.nyi.freebsd.org EXECUTOR_NUMBER=0 + echo 'setup jail FreeBSD_HEAD_i386' setup jail FreeBSD_HEAD_i386 + fetch -m http://ftp.freebsd.org/pub/FreeBSD/releases/i386/i386/10.2-RELEASE/base.txz + mkdir FreeBSD_HEAD_i386 + cd FreeBSD_HEAD_i386 + sudo tar Jxf ../base.txz + cd - + sudo mount -t devfs devfs FreeBSD_HEAD_i386/dev + sudo devfs -m FreeBSD_HEAD_i386/dev rule -s 4 applyset + sudo mount -t nullfs src FreeBSD_HEAD_i386/usr/src + printf 'nameserver 2610:1c1:1:6002::100\nnameserver 2610:1c1:1:6002::200\n' + sudo tee FreeBSD_HEAD_i386/etc/resolv.conf nameserver 2610:1c1:1:6002::100 nameserver 2610:1c1:1:6002::200 + sudo ifconfig igb0 inet6 2610:1c1:1:607c::104:1 alias + sudo jail -c persist 'name=FreeBSD_HEAD_i386' 'path=FreeBSD_HEAD_i386' 'host.hostname=FreeBSD_HEAD_i386.jail.ci.FreeBSD.org' 'ip6.addr=2610:1c1:1:607c::104:1' 'ip4=disable' allow.chflags + echo 'setup build environment' setup build environment + echo 'build environment:' build environment: + sudo jexec FreeBSD_HEAD_i386 sh -c 'uname -a' FreeBSD FreeBSD_HEAD_i386.jail.ci.FreeBSD.org 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r300094: Tue May 17 22:59:06 UTC 2016 peter@build-11.freebsd.org:/usr/obj/usr/src/sys/CLUSTER11 i386 + sudo pkg -j FreeBSD_HEAD_i386 info -q pkg: Warning: Major OS version upgrade detected. Running "pkg-static install -f pkg" recommended [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson619887137118728011.sh + export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin' + export 'jname=FreeBSD_HEAD_i386' + echo 'start build in FreeBSD_HEAD_i386' start build in FreeBSD_HEAD_i386 + sudo jexec FreeBSD_HEAD_i386 sh -c 'cd /usr/src && make -DNO_CLEAN -j 4 buildworld' make: "/usr/src/Makefile" line 222: Malformed conditional (${MK_META_MODE} == "yes") make: Fatal errors encountered -- cannot continue 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/hudson3064242603223483133.sh + export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin' + export 'jname=FreeBSD_HEAD_i386' + echo 'clean up jail FreeBSD_HEAD_i386' clean up jail FreeBSD_HEAD_i386 + sudo jail -r FreeBSD_HEAD_i386 + sudo ifconfig igb0 inet6 2610:1c1:1:607c::104: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 From owner-freebsd-i386@freebsd.org Tue Jun 14 17:23:51 2016 Return-Path: Delivered-To: freebsd-i386@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 D4DC4B72F3D; Tue, 14 Jun 2016 17:23:51 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id BE1C32EAD; Tue, 14 Jun 2016 17:23:51 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id B77971C33; Tue, 14 Jun 2016 17:23:51 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 677881DF4B; Tue, 14 Jun 2016 17:23:51 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id C0HEOdShGv2R; Tue, 14 Jun 2016 17:23:49 +0000 (UTC) Subject: Re: FreeBSD_HEAD_i386 - Build #3390 - Failure DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com EB8C11DF45 To: jenkins-admin@FreeBSD.org, andrew@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org References: <1729617824.66.1465924574124.JavaMail.jenkins@jenkins-9.freebsd.org> From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: <679c89f4-8129-4856-b2ea-0f55d329330b@FreeBSD.org> Date: Tue, 14 Jun 2016 10:23:49 -0700 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.0 MIME-Version: 1.0 In-Reply-To: <1729617824.66.1465924574124.JavaMail.jenkins@jenkins-9.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mOGN2uQ8Aqh3umI7Ahh1apKjPGRBuMvwL" X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Jun 2016 17:23:51 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --mOGN2uQ8Aqh3umI7Ahh1apKjPGRBuMvwL Content-Type: multipart/mixed; boundary="nqPFrDwXmbmR5VcDOtIV7PUViF2vJMgXi" From: Bryan Drewery To: jenkins-admin@FreeBSD.org, andrew@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <679c89f4-8129-4856-b2ea-0f55d329330b@FreeBSD.org> Subject: Re: FreeBSD_HEAD_i386 - Build #3390 - Failure References: <1729617824.66.1465924574124.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1729617824.66.1465924574124.JavaMail.jenkins@jenkins-9.freebsd.org> --nqPFrDwXmbmR5VcDOtIV7PUViF2vJMgXi Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 6/14/2016 10:16 AM, jenkins-admin@FreeBSD.org wrote: > make: "/usr/src/Makefile" line 222: Malformed conditional (${MK_META_MO= DE} =3D=3D "yes") Fixed. --=20 Regards, Bryan Drewery --nqPFrDwXmbmR5VcDOtIV7PUViF2vJMgXi-- --mOGN2uQ8Aqh3umI7Ahh1apKjPGRBuMvwL Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJXYD2lAAoJEDXXcbtuRpfPCUIIALvBrxm8mTC0ZHrpEvC/nl7x mZG3eIx6ZLpvCyn09fO6O+qZ90OczpYnQw6/fxVx/o8qnSstG+xPelbc0e4IWicS UukWlM1W/CFPY60UZyjrHd9BaQc/EPAeID+cZ4nWnbmm+8e+n918eeZYG0D8vbbj NZEp6G8PEs902XIttgjF92q8hBPMVa/LnUdLSEvb0L7HNl5dL8OJF0Nb2H1eQZEP 6gnDjr91VWL7oSzvIJ6V0gmwd7O4zf/g9CnMqW2b17siVkeLUP5xw9cVyueF4XIj VqS/cFqYFsg0Pn/JNbnrEok1WEqZOdq0rshzo1FzFaHf3XMLbUQdXTBJ8p9tYCY= =WM1z -----END PGP SIGNATURE----- --mOGN2uQ8Aqh3umI7Ahh1apKjPGRBuMvwL-- From owner-freebsd-i386@freebsd.org Tue Jun 14 20:23:55 2016 Return-Path: Delivered-To: freebsd-i386@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 6BAF7B72009; Tue, 14 Jun 2016 20:23:55 +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 5FE6626F4; Tue, 14 Jun 2016 20:23:55 +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 BE889E4C; Tue, 14 Jun 2016 20:23:55 +0000 (UTC) Date: Tue, 14 Jun 2016 20:23:54 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: bdrewery@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1229096875.72.1465935835787.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1729617824.66.1465924574124.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1729617824.66.1465924574124.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #3391 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Jun 2016 20:23:55 -0000 FreeBSD_HEAD_i386 - Build #3391 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3391/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3391/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3391/console Change summaries: 301895 by bdrewery: Renegerate for WITH_META_MODE updates. Approved by: re (implicit) Sponsored by: EMC / Isilon Storage Division 301894 by bdrewery: Fix makeman showing dependency of DIRDEPS_BUILD->META_MODE. This broke in r301887 with the meta mode whitelist. 'make showconfig' still needs WITH_META_MODE support. Approved by: re (implicit) Sponsored by: EMC / Isilon Storage Division 301893 by bdrewery: Fix build from stable/10 with fmake. This was broken in r301888. fmake does not look in share/mk by default and thus does not yet have MK_META_MODE set with default. Pointyhat to: bdrewery Approved by: re (implicit) Sponsored by: EMC / Isilon Storage Division 301892 by bdrewery: Bump __FreeBSD_version for r301602. Reported by: ngie, Ben Lavery PR: 210229 Approved by: re (gjb) From owner-freebsd-i386@freebsd.org Wed Jun 15 23:32:22 2016 Return-Path: Delivered-To: freebsd-i386@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 CAA7BA47AD4 for ; Wed, 15 Jun 2016 23:32:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9528E13B8 for ; Wed, 15 Jun 2016 23:32:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u5FNWMiV052057 for ; Wed, 15 Jun 2016 23:32:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-i386@FreeBSD.org Subject: [Bug 210314] [PATCH] usr.sbin/rpcbind unit tests fail on 32-bit platforms Date: Wed, 15 Jun 2016 23:32:22 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: asomers@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Jun 2016 23:32:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210314 Bug ID: 210314 Summary: [PATCH] usr.sbin/rpcbind unit tests fail on 32-bit platforms Product: Base System Version: 11.0-CURRENT Hardware: i386 OS: Any Status: New Keywords: patch Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: asomers@FreeBSD.org CC: freebsd-i386@FreeBSD.org CC: freebsd-i386@FreeBSD.org Keywords: patch As reported by Mark Millard, the usr.sbin/rpcbind tests fail on 32-bit platforms: > usr.sbin/rpcbind/addrmerge_test:addrmerge_bindip -> failed: 1 checks fa= iled; see output for more details [0.035s] > usr.sbin/rpcbind/addrmerge_test:addrmerge_bindip_rev -> failed: 1 check= s failed; see output for more details [0.035s] > usr.sbin/rpcbind/addrmerge_test:addrmerge_localhost_only -> failed: 1 c= hecks failed; see output for more details [0.034s] > usr.sbin/rpcbind/addrmerge_test:addrmerge_one_addr_on_each_subnet -> fa= iled: 1 checks failed; see output for more details [0.035s] > usr.sbin/rpcbind/addrmerge_test:addrmerge_one_addr_on_each_subnet_rev ->= failed: 1 checks failed; see output for more details [0.035s] > usr.sbin/rpcbind/addrmerge_test:addrmerge_point2point -> failed: 1 chec= ks failed; see output for more details [0.035s] > usr.sbin/rpcbind/addrmerge_test:addrmerge_point2point_rev -> failed: 1 = checks failed; see output for more details [0.033s] > usr.sbin/rpcbind/addrmerge_test:addrmerge_recvdstaddr -> failed: 1 chec= ks failed; see output for more details [0.035s] > usr.sbin/rpcbind/addrmerge_test:addrmerge_recvdstaddr_rev -> failed: 1 = checks failed; see output for more details [0.035s] > usr.sbin/rpcbind/addrmerge_test:addrmerge_singlehomed -> failed: 1 chec= ks failed; see output for more details [0.032s] --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-i386@freebsd.org Wed Jun 15 23:32:49 2016 Return-Path: Delivered-To: freebsd-i386@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 0628CA47BE1 for ; Wed, 15 Jun 2016 23:32:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E9D1D149D for ; Wed, 15 Jun 2016 23:32:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u5FNWmp5054085 for ; Wed, 15 Jun 2016 23:32:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-i386@FreeBSD.org Subject: [Bug 210314] [PATCH] usr.sbin/rpcbind unit tests fail on 32-bit platforms Date: Wed, 15 Jun 2016 23:32:49 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: asomers@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: asomers@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: flagtypes.name assigned_to bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Jun 2016 23:32:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210314 Alan Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Flags| |mfc-stable10? Assignee|freebsd-bugs@FreeBSD.org |asomers@FreeBSD.org Status|New |In Progress --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-i386@freebsd.org Thu Jun 16 15:26:24 2016 Return-Path: Delivered-To: freebsd-i386@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 738E4A72F36 for ; Thu, 16 Jun 2016 15:26:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 632B41E2D for ; Thu, 16 Jun 2016 15:26:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u5GFQOiq035388 for ; Thu, 16 Jun 2016 15:26:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-i386@FreeBSD.org Subject: [Bug 210314] [PATCH] usr.sbin/rpcbind unit tests fail on 32-bit platforms Date: Thu, 16 Jun 2016 15:26:24 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: asomers@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2016 15:26:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210314 --- Comment #1 from commit-hook@freebsd.org --- A commit references this bug: Author: asomers Date: Thu Jun 16 15:25:37 UTC 2016 New revision: 301967 URL: https://svnweb.freebsd.org/changeset/base/301967 Log: Fix usr.sbin/rpcbind ATF tests on 32-bit platforms usr.sbin/rpcbind/tests/addrmerge_test.c Fix some sizeof calculations that work only by luck on 64-bit platforms. PR: 210314 Reviewed by: ngie Approved by: re (kib) Reported by: Mark Millard MFC after: 4 weeks Sponsored by: Spectra Logic Corp Differential Revision: https://reviews.freebsd.org/D6855 Changes: head/usr.sbin/rpcbind/tests/addrmerge_test.c --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-i386@freebsd.org Thu Jun 16 15:27:24 2016 Return-Path: Delivered-To: freebsd-i386@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 36BE9A72F9F for ; Thu, 16 Jun 2016 15:27:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 267101E71 for ; Thu, 16 Jun 2016 15:27:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u5GFROnX036626 for ; Thu, 16 Jun 2016 15:27:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-i386@FreeBSD.org Subject: [Bug 210314] [PATCH] usr.sbin/rpcbind unit tests fail on 32-bit platforms Date: Thu, 16 Jun 2016 15:27:24 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: asomers@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: asomers@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2016 15:27:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210314 Alan Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|In Progress |Closed --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-i386@freebsd.org Thu Jun 16 15:37:12 2016 Return-Path: Delivered-To: freebsd-i386@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 CAEB5A7342D; Thu, 16 Jun 2016 15:37:12 +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 BF21318AF; Thu, 16 Jun 2016 15:37:12 +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 C3C9A138C; Thu, 16 Jun 2016 15:37:12 +0000 (UTC) Date: Thu, 16 Jun 2016 15:37:12 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: hselasky@FreeBSD.org, gjb@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1791842297.85.1466091432809.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #3401 - Failure 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.22 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2016 15:37:12 -0000 FreeBSD_HEAD_i386 - Build #3401 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3401/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3401/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3401/cons= ole Change summaries: 301966 by hselasky: Add support for libusb_set_auto_detach_kernel_driver() to the LibUSB v1.0 A= PI. Approved by:=09re (kostikbel) Requested by:=09swills MFC after:=091 week 301965 by gjb: Reimplement r301944 using the correct install(1) invocation, which again fixes packaging tzdata/zoneinfo. Thank you to hrs for the pointer on what I did incorrectly. Approved by:=09re (blanket, pkgbase) Sponsored by:=09The FreeBSD Foundation The end of the build log: [...truncated 59354 lines...] cc -O2 -pipe -I/usr/src/lib/libstand -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DH= AVE_MEMCPY -I/usr/src/lib/libstand/../libz -ffreestanding -Wformat -mno-mmx= -mno-sse -mno-avx -msoft-float -D_STANDALONE -MD -MF.depend.netif.o -MTne= tif.o -std=3Dgnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -= Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-= parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-= local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno= -parentheses -Qunused-arguments -c /usr/src/lib/libstand/netif.c -o netif= .o --- all_subdir_lib/libulog --- --- libulog.a --- building static ulog library ar -crD libulog.a `NM=3D'nm' NMFLAGS=3D'' lorder ulog_login.o ulog_login_ps= eudo.o utempter.o | tsort -q`=20 ranlib -D libulog.a --- all_subdir_lib/libucl --- --- ucl_parser.So --- cc -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libucl/../../contrib/libucl/inc= lude -I/usr/src/lib/libucl/../../contrib/libucl/src -I/usr/src/lib/libucl= /../../contrib/libucl/uthash -I/usr/src/lib/libucl/../../contrib/libucl/kl= ib -MD -MF.depend.ucl_parser.So -MTucl_parser.So -std=3Dgnu99 -fstack-pr= otector-strong -Wsystem-headers -Werror -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 -Wno-parentheses -Qunused-arguments -c /usr/src/lib/libu= cl/../../contrib/libucl/src/ucl_parser.c -o ucl_parser.So --- all_subdir_lib/libulog --- --- Version.map --- cat /usr/src/lib/libulog/Symbol.map | cpp - - | awk -v vfile=3D/usr/src/l= ib/libulog/../libc/Versions.def -f /usr/src/share/mk/version_gen.awk > Vers= ion.map --- all_subdir_lib/libunbound --- =3D=3D=3D> lib/libunbound (all) --- all_subdir_lib/libulog --- --- libulog.so.0.full --- building shared library libulog.so.0 cc -Wl,--version-script=3DVersion.map -fstack-protector-strong -shared -Wl= ,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libulog.so.0.full -W= l,-soname,libulog.so.0 `NM=3D'nm' NMFLAGS=3D'' lorder ulog_login.So ulog_l= ogin_pseudo.So utempter.So | tsort -q` -lmd --- libulog.so.0.debug --- objcopy --only-keep-debug libulog.so.0.full libulog.so.0.debug --- libulog.so.0 --- objcopy --strip-debug --add-gnu-debuglink=3Dlibulog.so.0.debug libulog.so.= 0.full libulog.so.0 --- all_subdir_lib/libstand --- --- rpc.o --- cc -O2 -pipe -I/usr/src/lib/libstand -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DH= AVE_MEMCPY -I/usr/src/lib/libstand/../libz -ffreestanding -Wformat -mno-mmx= -mno-sse -mno-avx -msoft-float -D_STANDALONE -MD -MF.depend.rpc.o -MTrpc.= o -std=3Dgnu99 -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 -Wno-par= entheses -Qunused-arguments -c /usr/src/lib/libstand/rpc.c -o rpc.o --- all_subdir_lib/libunbound --- --- configlexer.l --- cp -f /usr/src/lib/libunbound/../../contrib/unbound/util/configlexer.lex co= nfiglexer.l --- all_subdir_lib/libusbhid --- =3D=3D=3D> lib/libusbhid (all) --- all_subdir_lib/libunbound --- --- configparser.c --- yacc -pub_c_ -d -o configparser.c /usr/src/lib/libunbound/../../contrib/unb= ound/util/configparser.y --- all_subdir_lib/libusbhid --- --- descr.o --- cc -O2 -pipe -MD -MF.depend.descr.o -MTdescr.o -std=3Dgnu99 -fstack-pr= otector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unuse= d-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wretu= rn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -W= cast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -W= old-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wth= read-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable= -Qunused-arguments -c /usr/src/lib/libusbhid/descr.c -o descr.o --- all_subdir_lib/libunbound --- --- configlexer.c --- lex -Pub_c_ -oconfiglexer.c configlexer.l --- all_subdir_lib/libstand --- --- bootp.o --- --- all_subdir_lib/libunbound --- --- .depend --- --- all_subdir_lib/libstand --- cc -O2 -pipe -I/usr/src/lib/libstand -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DH= AVE_MEMCPY -I/usr/src/lib/libstand/../libz -ffreestanding -Wformat -mno-mmx= -mno-sse -mno-avx -msoft-float -D_STANDALONE -MD -MF.depend.bootp.o -MTbo= otp.o -std=3Dgnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -= Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-= parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-= local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno= -parentheses -Qunused-arguments -c /usr/src/lib/libstand/bootp.c -o bootp= .o --- all_subdir_lib/libunbound --- echo libprivateunbound.so.5.full: /usr/obj/usr/src/tmp/usr/lib/libssl.a /us= r/obj/usr/src/tmp/usr/lib/libcrypto.a /usr/obj/usr/src/tmp/usr/lib/libpthre= ad.a >> .depend --- alloc.o --- cc -O2 -pipe -I/usr/src/lib/libunbound/../../contrib/unbound -I/usr/src/l= ib/libunbound/../../contrib/ldns -I/usr/obj/usr/src/lib/libunbound -MD -= MF.depend.alloc.o -MTalloc.o -std=3Dgnu99 -fstack-protector-strong -Wsystem= -headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-pr= ototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-point= er-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wn= o-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unu= sed-function -Wno-enum-conversion -Wno-unused-local-typedef -Qunused-argum= ents -c /usr/src/lib/libunbound/../../contrib/unbound/util/alloc.c -o allo= c.o --- all_subdir_lib/libusbhid --- --- descr_compat.o --- cc -O2 -pipe -MD -MF.depend.descr_compat.o -MTdescr_compat.o -std=3Dgn= u99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k= -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunuse= d-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredu= ndant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-dec= larations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-= const-variable -Qunused-arguments -c /usr/src/lib/libusbhid/descr_compat.= c -o descr_compat.o --- parse.o --- cc -O2 -pipe -MD -MF.depend.parse.o -MTparse.o -std=3Dgnu99 -fstack-pr= otector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unuse= d-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wretu= rn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -W= cast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -W= old-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wth= read-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable= -Qunused-arguments -c /usr/src/lib/libusbhid/parse.c -o parse.o --- all_subdir_lib/libstand --- --- rarp.o --- cc -O2 -pipe -I/usr/src/lib/libstand -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DH= AVE_MEMCPY -I/usr/src/lib/libstand/../libz -ffreestanding -Wformat -mno-mmx= -mno-sse -mno-avx -msoft-float -D_STANDALONE -MD -MF.depend.rarp.o -MTrar= p.o -std=3Dgnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wn= o-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-pa= rentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-lo= cal-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-p= arentheses -Qunused-arguments -c /usr/src/lib/libstand/rarp.c -o rarp.o --- all_subdir_lib/libunbound --- --- as112.o --- cc -O2 -pipe -I/usr/src/lib/libunbound/../../contrib/unbound -I/usr/src/l= ib/libunbound/../../contrib/ldns -I/usr/obj/usr/src/lib/libunbound -MD -= MF.depend.as112.o -MTas112.o -std=3Dgnu99 -fstack-protector-strong -Wsystem= -headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-pr= ototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-point= er-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wn= o-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unu= sed-function -Wno-enum-conversion -Wno-unused-local-typedef -Qunused-argum= ents -c /usr/src/lib/libunbound/../../contrib/unbound/util/as112.c -o as11= 2.o --- autotrust.o --- cc -O2 -pipe -I/usr/src/lib/libunbound/../../contrib/unbound -I/usr/src/l= ib/libunbound/../../contrib/ldns -I/usr/obj/usr/src/lib/libunbound -MD -= MF.depend.autotrust.o -MTautotrust.o -std=3Dgnu99 -fstack-protector-strong = -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Ws= trict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -W= no-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-vari= able -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality = -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Qunus= ed-arguments -c /usr/src/lib/libunbound/../../contrib/unbound/validator/au= totrust.c -o autotrust.o --- all_subdir_lib/libstand --- --- bootparam.o --- cc -O2 -pipe -I/usr/src/lib/libstand -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DH= AVE_MEMCPY -I/usr/src/lib/libstand/../libz -ffreestanding -Wformat -mno-mmx= -mno-sse -mno-avx -msoft-float -D_STANDALONE -MD -MF.depend.bootparam.o -= MTbootparam.o -std=3Dgnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Wno-parentheses -Qunused-arguments -c /usr/src/lib/libstand/bootpara= m.c -o bootparam.o --- all_subdir_lib/libusbhid --- --- usage.o --- cc -O2 -pipe -MD -MF.depend.usage.o -MTusage.o -std=3Dgnu99 -fstack-pr= otector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unuse= d-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wretu= rn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -W= cast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -W= old-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wth= read-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable= -Qunused-arguments -c /usr/src/lib/libusbhid/usage.c -o usage.o --- all_subdir_lib/libstand --- --- ufs.o --- cc -O2 -pipe -I/usr/src/lib/libstand -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DH= AVE_MEMCPY -I/usr/src/lib/libstand/../libz -ffreestanding -Wformat -mno-mmx= -mno-sse -mno-avx -msoft-float -D_STANDALONE -MD -MF.depend.ufs.o -MTufs.= o -std=3Dgnu99 -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 -Wno-par= entheses -Qunused-arguments -c /usr/src/lib/libstand/ufs.c -o ufs.o --- all_subdir_lib/libusbhid --- --- data.o --- cc -O2 -pipe -MD -MF.depend.data.o -MTdata.o -std=3Dgnu99 -fstack-prot= ector-strong -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 -Wca= st-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wol= d-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthre= ad-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable = -Qunused-arguments -c /usr/src/lib/libusbhid/data.c -o data.o --- descr.So --- cc -fpic -DPIC -g -O2 -pipe -MD -MF.depend.descr.So -MTdescr.So -std=3D= gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y= 2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpoin= ter-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunu= sed-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wre= dundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-d= eclarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unuse= d-const-variable -Qunused-arguments -c /usr/src/lib/libusbhid/descr.c -o = descr.So --- descr_compat.So --- cc -fpic -DPIC -g -O2 -pipe -MD -MF.depend.descr_compat.So -MTdescr_com= pat.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall= -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-pro= totypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch = -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wneste= d-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmiss= ing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-= int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libusbh= id/descr_compat.c -o descr_compat.So --- all_subdir_lib/libstand --- --- nfs.o --- cc -O2 -pipe -I/usr/src/lib/libstand -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DH= AVE_MEMCPY -I/usr/src/lib/libstand/../libz -ffreestanding -Wformat -mno-mmx= -mno-sse -mno-avx -msoft-float -D_STANDALONE -MD -MF.depend.nfs.o -MTnfs.= o -std=3Dgnu99 -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 -Wno-par= entheses -Qunused-arguments -c /usr/src/lib/libstand/nfs.c -o nfs.o --- all_subdir_lib/libusbhid --- --- parse.So --- cc -fpic -DPIC -g -O2 -pipe -MD -MF.depend.parse.So -MTparse.So -std=3D= gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y= 2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpoin= ter-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunu= sed-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wre= dundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-d= eclarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unuse= d-const-variable -Qunused-arguments -c /usr/src/lib/libusbhid/parse.c -o = parse.So --- all_subdir_lib/libstand --- --- cd9660.o --- cc -O2 -pipe -I/usr/src/lib/libstand -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DH= AVE_MEMCPY -I/usr/src/lib/libstand/../libz -ffreestanding -Wformat -mno-mmx= -mno-sse -mno-avx -msoft-float -D_STANDALONE -MD -MF.depend.cd9660.o -MTc= d9660.o -std=3Dgnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int= -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wn= o-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unuse= d-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -W= no-parentheses -Qunused-arguments -c /usr/src/lib/libstand/cd9660.c -o cd= 9660.o --- all_subdir_lib/libusbhid --- --- usage.So --- cc -fpic -DPIC -g -O2 -pipe -MD -MF.depend.usage.So -MTusage.So -std=3D= gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y= 2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpoin= ter-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunu= sed-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wre= dundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-d= eclarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unuse= d-const-variable -Qunused-arguments -c /usr/src/lib/libusbhid/usage.c -o = usage.So --- all_subdir_lib/libstand --- --- tftp.o --- cc -O2 -pipe -I/usr/src/lib/libstand -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DH= AVE_MEMCPY -I/usr/src/lib/libstand/../libz -ffreestanding -Wformat -mno-mmx= -mno-sse -mno-avx -msoft-float -D_STANDALONE -MD -MF.depend.tftp.o -MTtft= p.o -std=3Dgnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wn= o-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-pa= rentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-lo= cal-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-p= arentheses -Qunused-arguments -c /usr/src/lib/libstand/tftp.c -o tftp.o --- all_subdir_lib/libusbhid --- --- data.So --- cc -fpic -DPIC -g -O2 -pipe -MD -MF.depend.data.So -MTdata.So -std=3Dgn= u99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k= -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunuse= d-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredu= ndant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-dec= larations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-= const-variable -Qunused-arguments -c /usr/src/lib/libusbhid/data.c -o dat= a.So --- libusbhid.a --- building static usbhid library ar -crD libusbhid.a `NM=3D'nm' NMFLAGS=3D'' lorder descr.o descr_compat.o p= arse.o usage.o data.o | tsort -q`=20 ranlib -D libusbhid.a --- libusbhid.so.4.full --- building shared library libusbhid.so.4 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn= -shared-textrel -o libusbhid.so.4.full -Wl,-soname,libusbhid.so.4 `NM=3D'= nm' NMFLAGS=3D'' lorder descr.So descr_compat.So parse.So usage.So data.So = | tsort -q`=20 --- libusbhid.so.4.debug --- objcopy --only-keep-debug libusbhid.so.4.full libusbhid.so.4.debug --- libusbhid.so.4 --- objcopy --strip-debug --add-gnu-debuglink=3Dlibusbhid.so.4.debug libusbhid= .so.4.full libusbhid.so.4 --- all_subdir_lib/libucl --- --- ucl_schema.So --- cc -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libucl/../../contrib/libucl/inc= lude -I/usr/src/lib/libucl/../../contrib/libucl/src -I/usr/src/lib/libucl= /../../contrib/libucl/uthash -I/usr/src/lib/libucl/../../contrib/libucl/kl= ib -MD -MF.depend.ucl_schema.So -MTucl_schema.So -std=3Dgnu99 -fstack-pr= otector-strong -Wsystem-headers -Werror -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 -Wno-parentheses -Qunused-arguments -c /usr/src/lib/libu= cl/../../contrib/libucl/src/ucl_schema.c -o ucl_schema.So --- all_subdir_lib/libstand --- --- gzipfs.o --- cc -O2 -pipe -I/usr/src/lib/libstand -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DH= AVE_MEMCPY -I/usr/src/lib/libstand/../libz -ffreestanding -Wformat -mno-mmx= -mno-sse -mno-avx -msoft-float -D_STANDALONE -MD -MF.depend.gzipfs.o -MTg= zipfs.o -std=3Dgnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int= -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wn= o-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unuse= d-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -W= no-parentheses -Qunused-arguments -c /usr/src/lib/libstand/gzipfs.c -o gz= ipfs.o --- bzipfs.o --- cc -O2 -pipe -I/usr/src/lib/libstand -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DH= AVE_MEMCPY -I/usr/src/lib/libstand/../libz -ffreestanding -Wformat -mno-mmx= -mno-sse -mno-avx -msoft-float -D_STANDALONE -MD -MF.depend.bzipfs.o -MTb= zipfs.o -std=3Dgnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int= -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wn= o-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unuse= d-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -W= no-parentheses -Qunused-arguments -c /usr/src/lib/libstand/bzipfs.c -o bz= ipfs.o --- all_subdir_lib/libunbound --- --- config_file.o --- cc -O2 -pipe -I/usr/src/lib/libunbound/../../contrib/unbound -I/usr/src/l= ib/libunbound/../../contrib/ldns -I/usr/obj/usr/src/lib/libunbound -MD -= MF.depend.config_file.o -MTconfig_file.o -std=3Dgnu99 -fstack-protector-str= ong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter= -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialize= d -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-= variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equal= ity -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Q= unused-arguments -c /usr/src/lib/libunbound/../../contrib/unbound/util/con= fig_file.c -o config_file.o --- all_subdir_lib/libstand --- --- dosfs.o --- cc -O2 -pipe -I/usr/src/lib/libstand -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DH= AVE_MEMCPY -I/usr/src/lib/libstand/../libz -ffreestanding -Wformat -mno-mmx= -mno-sse -mno-avx -msoft-float -D_STANDALONE -MD -MF.depend.dosfs.o -MTdo= sfs.o -std=3Dgnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -= Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-= parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-= local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno= -parentheses -Qunused-arguments -c /usr/src/lib/libstand/dosfs.c -o dosfs= .o --- all_subdir_lib/libunbound --- --- configlexer.o --- cc -O2 -pipe -I/usr/src/lib/libunbound/../../contrib/unbound -I/usr/src/l= ib/libunbound/../../contrib/ldns -I/usr/obj/usr/src/lib/libunbound -MD -= MF.depend.configlexer.o -MTconfiglexer.o -std=3Dgnu99 -fstack-protector-str= ong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter= -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialize= d -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-= variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equal= ity -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Q= unused-arguments -c configlexer.c -o configlexer.o --- all_subdir_lib/libstand --- --- ext2fs.o --- cc -O2 -pipe -I/usr/src/lib/libstand -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DH= AVE_MEMCPY -I/usr/src/lib/libstand/../libz -ffreestanding -Wformat -mno-mmx= -mno-sse -mno-avx -msoft-float -D_STANDALONE -MD -MF.depend.ext2fs.o -MTe= xt2fs.o -std=3Dgnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int= -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wn= o-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unuse= d-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -W= no-parentheses -Qunused-arguments -c /usr/src/lib/libstand/ext2fs.c -o ex= t2fs.o --- all_subdir_lib/libucl --- --- ucl_sexp.So --- cc -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libucl/../../contrib/libucl/inc= lude -I/usr/src/lib/libucl/../../contrib/libucl/src -I/usr/src/lib/libucl= /../../contrib/libucl/uthash -I/usr/src/lib/libucl/../../contrib/libucl/kl= ib -MD -MF.depend.ucl_sexp.So -MTucl_sexp.So -std=3Dgnu99 -fstack-protec= tor-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-= string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-u= nused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conver= sion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promot= ed-parameter -Wno-parentheses -Qunused-arguments -c /usr/src/lib/libucl/.= ./../contrib/libucl/src/ucl_sexp.c -o ucl_sexp.So --- all_subdir_lib/libstand --- --- splitfs.o --- cc -O2 -pipe -I/usr/src/lib/libstand -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DH= AVE_MEMCPY -I/usr/src/lib/libstand/../libz -ffreestanding -Wformat -mno-mmx= -mno-sse -mno-avx -msoft-float -D_STANDALONE -MD -MF.depend.splitfs.o -MT= splitfs.o -std=3Dgnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-i= nt -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -= Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unu= sed-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter = -Wno-parentheses -Qunused-arguments -c /usr/src/lib/libstand/splitfs.c -o= splitfs.o --- all_subdir_lib/libucl --- --- ucl_util.So --- cc -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libucl/../../contrib/libucl/inc= lude -I/usr/src/lib/libucl/../../contrib/libucl/src -I/usr/src/lib/libucl= /../../contrib/libucl/uthash -I/usr/src/lib/libucl/../../contrib/libucl/kl= ib -MD -MF.depend.ucl_util.So -MTucl_util.So -std=3Dgnu99 -fstack-protec= tor-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-= string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-u= nused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conver= sion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promot= ed-parameter -Wno-parentheses -Qunused-arguments -c /usr/src/lib/libucl/.= ./../contrib/libucl/src/ucl_util.c -o ucl_util.So --- all_subdir_lib/libstand --- --- pkgfs.o --- cc -O2 -pipe -I/usr/src/lib/libstand -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DH= AVE_MEMCPY -I/usr/src/lib/libstand/../libz -ffreestanding -Wformat -mno-mmx= -mno-sse -mno-avx -msoft-float -D_STANDALONE -MD -MF.depend.pkgfs.o -MTpk= gfs.o -std=3Dgnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -= Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-= parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-= local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno= -parentheses -Qunused-arguments -c /usr/src/lib/libstand/pkgfs.c -o pkgfs= .o --- all_subdir_lib/libusb --- =3D=3D=3D> lib/libusb (all) --- .depend --- echo libusb.so.3.full: /usr/obj/usr/src/tmp/usr/lib/libpthread.a >> .depend --- libusb20.o --- cc -O2 -pipe -MD -MF.depend.libusb20.o -MTlibusb20.o -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-a= rguments -c /usr/src/lib/libusb/libusb20.c -o libusb20.o --- all_subdir_lib/libunbound --- --- configparser.o --- cc -O2 -pipe -I/usr/src/lib/libunbound/../../contrib/unbound -I/usr/src/l= ib/libunbound/../../contrib/ldns -I/usr/obj/usr/src/lib/libunbound -MD -= MF.depend.configparser.o -MTconfigparser.o -std=3Dgnu99 -fstack-protector-s= trong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-paramet= er -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitiali= zed -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-cons= t-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equ= ality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef = -Qunused-arguments -c configparser.c -o configparser.o --- all_subdir_lib/libstand --- --- libstand.a --- building static stand library ar -crD libstand.a `NM=3D'nm' NMFLAGS=3D'' lorder __main.o assert.o bcd.o e= nvironment.o getopt.o gets.o globals.o pager.o printf.o strdup.o strerror.o= strtol.o strtoul.o random.o sbrk.o twiddle.o zalloc.o zalloc_malloc.o strc= asecmp.o ntoh.o bcmp.o bcopy.o bzero.o ffs.o fls.o memccpy.o memchr.o memcm= p.o memcpy.o memmove.o memset.o qdivrem.o strcat.o strchr.o strcmp.o strcpy= .o strcspn.o strlcat.o strlcpy.o strlen.o strncat.o strncmp.o strncpy.o str= pbrk.o strrchr.o strsep.o strspn.o strstr.o strtok.o swab.o uuid_create_nil= .o uuid_equal.o uuid_from_string.o uuid_is_nil.o uuid_to_string.o _setjmp.o= _bzlib.o _crctable.o _decompress.o _huffman.o _randtable.o adler32.o crc32= .o _infback.o _inffast.o _inflate.o _inftrees.o _zutil.o closeall.o dev.o i= octl.o nullfs.o stat.o fstat.o close.o lseek.o open.o read.o write.o readdi= r.o arp.o ether.o inet_ntoa.o in_cksum.o net.o udp.o netif.o rpc.o bootp.o = rarp.o bootparam.o ufs.o nfs.o cd9660.o tftp.o gzipfs.o bzipfs.o dosfs.o ex= t2fs.o splitfs.o pkgfs.o | tsort -q`=20 --- all_subdir_lib/libusb --- --- libusb20_desc.o --- cc -O2 -pipe -MD -MF.depend.libusb20_desc.o -MTlibusb20_desc.o -std=3D= gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y= 2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-in= t -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -W= no-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unus= ed-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter = -Qunused-arguments -c /usr/src/lib/libusb/libusb20_desc.c -o libusb20_desc= .o --- all_subdir_lib/libstand --- ranlib -D libstand.a --- all_subdir_lib/libusb --- --- libusb20_ugen20.o --- cc -O2 -pipe -MD -MF.depend.libusb20_ugen20.o -MTlibusb20_ugen20.o -st= d=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-form= at-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-valu= e -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-= unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramet= er -Qunused-arguments -c /usr/src/lib/libusb/libusb20_ugen20.c -o libusb2= 0_ugen20.o --- all_subdir_lib/libunbound --- --- context.o --- cc -O2 -pipe -I/usr/src/lib/libunbound/../../contrib/unbound -I/usr/src/l= ib/libunbound/../../contrib/ldns -I/usr/obj/usr/src/lib/libunbound -MD -= MF.depend.context.o -MTcontext.o -std=3Dgnu99 -fstack-protector-strong -Wsy= stem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstric= t-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-p= ointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable= -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno= -unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Qunused-a= rguments -c /usr/src/lib/libunbound/../../contrib/unbound/libunbound/conte= xt.c -o context.o --- all_subdir_lib/libusb --- --- libusb01.o --- cc -O2 -pipe -MD -MF.depend.libusb01.o -MTlibusb01.o -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-a= rguments -c /usr/src/lib/libusb/libusb01.c -o libusb01.o --- all_subdir_lib/libutil --- =3D=3D=3D> lib/libutil (all) --- all_subdir_lib/libusb --- --- libusb10.o --- cc -O2 -pipe -MD -MF.depend.libusb10.o -MTlibusb10.o -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-a= rguments -c /usr/src/lib/libusb/libusb10.c -o libusb10.o --- libusb10_desc.o --- cc -O2 -pipe -MD -MF.depend.libusb10_desc.o -MTlibusb10_desc.o -std=3D= gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y= 2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-in= t -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -W= no-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unus= ed-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter = -Qunused-arguments -c /usr/src/lib/libusb/libusb10_desc.c -o libusb10_desc= .o --- all_subdir_lib/libunbound --- --- dname.o --- cc -O2 -pipe -I/usr/src/lib/libunbound/../../contrib/unbound -I/usr/src/l= ib/libunbound/../../contrib/ldns -I/usr/obj/usr/src/lib/libunbound -MD -= MF.depend.dname.o -MTdname.o -std=3Dgnu99 -fstack-protector-strong -Wsystem= -headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-pr= ototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-point= er-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wn= o-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unu= sed-function -Wno-enum-conversion -Wno-unused-local-typedef -Qunused-argum= ents -c /usr/src/lib/libunbound/../../contrib/unbound/util/data/dname.c -o= dname.o --- all_subdir_lib/libusb --- --- libusb10.o --- /usr/src/lib/libusb/libusb10.c:893:1: error: control reaches end of non-voi= d function [-Werror,-Wreturn-type] } ^ 1 error generated. *** [libusb10.o] Error code 1 bmake[5]: stopped in /usr/src/lib/libusb 1 error bmake[5]: stopped in /usr/src/lib/libusb *** [all_subdir_lib/libusb] Error code 2 bmake[4]: stopped in /usr/src/lib --- all_subdir_lib/libucl --- A failure has been detected in another branch of the parallel make bmake[5]: stopped in /usr/src/lib/libucl *** [all_subdir_lib/libucl] Error code 2 bmake[4]: stopped in /usr/src/lib --- all_subdir_lib/libunbound --- A failure has been detected in another branch of the parallel make bmake[5]: stopped in /usr/src/lib/libunbound *** [all_subdir_lib/libunbound] Error code 2 bmake[4]: stopped in /usr/src/lib 3 errors bmake[4]: stopped in /usr/src/lib *** [lib__L] Error code 2 bmake[3]: stopped in /usr/src 1 error bmake[3]: stopped in /usr/src *** [libraries] Error code 2 bmake[2]: stopped in /usr/src 1 error bmake[2]: stopped in /usr/src *** [_libraries] Error code 2 bmake[1]: stopped in /usr/src 1 error bmake[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/hudson7864511804972915504.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::104: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 From owner-freebsd-i386@freebsd.org Thu Jun 16 16:24:30 2016 Return-Path: Delivered-To: freebsd-i386@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 7ADF8A47619; Thu, 16 Jun 2016 16:24:30 +0000 (UTC) (envelope-from hps@selasky.org) Received: from mail.turbocat.net (heidi.turbocat.net [88.198.202.214]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 444FF1BB4; Thu, 16 Jun 2016 16:24:29 +0000 (UTC) (envelope-from hps@selasky.org) Received: from laptop015.home.selasky.org (unknown [62.141.129.119]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id F40C31FE023; Thu, 16 Jun 2016 18:24:27 +0200 (CEST) Subject: Re: FreeBSD_HEAD_i386 - Build #3401 - Failure To: jenkins-admin@FreeBSD.org, gjb@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org References: <1791842297.85.1466091432809.JavaMail.jenkins@jenkins-9.freebsd.org> From: Hans Petter Selasky Message-ID: <182c6d60-663a-ad8c-3a78-ace8de7329c5@selasky.org> Date: Thu, 16 Jun 2016 18:28:02 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.0 MIME-Version: 1.0 In-Reply-To: <1791842297.85.1466091432809.JavaMail.jenkins@jenkins-9.freebsd.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2016 16:24:30 -0000 On 06/16/16 17:37, jenkins-admin@FreeBSD.org wrote: > FreeBSD_HEAD_i386 - Build #3401 - Failure: > > Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3401/ > Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3401/changes > Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3401/console > > Change summaries: > > 301966 by hselasky: > Add support for libusb_set_auto_detach_kernel_driver() to the LibUSB v1.0 API. > > Approved by: re (kostikbel) > Requested by: swills > MFC after: 1 week > I'm on this one. Fix is pending approval. Seems like amd64 clang36 didn't complain so it slipped through. --HPS From owner-freebsd-i386@freebsd.org Thu Jun 16 17:03:33 2016 Return-Path: Delivered-To: freebsd-i386@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 AB68EA761CA for ; Thu, 16 Jun 2016 17:03:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9B999142A for ; Thu, 16 Jun 2016 17:03:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u5GH3X5F006807 for ; Thu, 16 Jun 2016 17:03:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-i386@FreeBSD.org Subject: [Bug 210326] Multiple errors in libxo ATF tests on i386 Date: Thu, 16 Jun 2016 17:03:33 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: asomers@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2016 17:03:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210326 Bug ID: 210326 Summary: Multiple errors in libxo ATF tests on i386 Product: Base System Version: 11.0-CURRENT Hardware: i386 OS: Any Status: New Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: asomers@FreeBSD.org CC: freebsd-i386@FreeBSD.org CC: freebsd-i386@FreeBSD.org The libxo ATF tests all pass on amd64, but they have multiple errors on i38= 6.=20 Some tests give the wrong output, and others segfault. From inspection, I believe that the errors lie in libxo itself, not in the tests. Here are two examples. The first gives wrong output and the second segfaults. $ kyua debug functional_test:test_02__E Executing command [ env LC_ALL=3Den_US.UTF-8 LIBXO_OPTIONS=3Dwarn,encoder= =3Dtest TZ=3DEST /usr/tests/lib/libxo/test_02 ] Fail: stdout does not match golden output --- /usr/tests/lib/libxo/test_02.E.out 2016-06-11 01:25:13.000000000 +0000 +++ /tmp/kyua.atf-tester.wD9FcQ/check.KQCiwT/stdout 2016-06-16 17:01:58.283775000 +0000 @@ -9,9 +9,9 @@ op content: [fd] [-1] op string: [error] [Bad fi] op string: [test] [good] -op content: [lines] [20] -op content: [words] [30] -op content: [characters] [40] +op content: [lines] [128849018900] +op content: [words] [577747258217332776] +op content: [characters] [0] op open_leaf_list: [bytes] [] op content: [bytes] [0] op content: [bytes] [1] functional_test:test_02__E -> failed: atf-check failed; see the output of= the test for details $ kyua debug functional_test:test_02__H Executing command [ env LC_ALL=3Den_US.UTF-8 LIBXO_OPTIONS=3D:WH TZ=3DEST /usr/tests/lib/libxo/test_02 ] Fail: program did not exit cleanly stdout:
We are
{emit}
{ting}
some
braces
abcdef
abcdef: Bad file des= criptor
improper use of prof= anity; ten yard penalty; first down
length
abcdef
close
-1
retu= rned
Bad file descriptor
good
close
-1
returned
Bad fi
good
improper use of profanity; ten yard penalty; first down
stderr: functional_test:test_02__H -> failed: atf-check failed; see the output of= the test for details --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-i386@freebsd.org Thu Jun 16 17:04:36 2016 Return-Path: Delivered-To: freebsd-i386@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 23F31A7623F for ; Thu, 16 Jun 2016 17:04:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 142AD14CF for ; Thu, 16 Jun 2016 17:04:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u5GH4ZI5008160 for ; Thu, 16 Jun 2016 17:04:35 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-i386@FreeBSD.org Subject: [Bug 210326] Multiple errors in libxo ATF tests on i386 Date: Thu, 16 Jun 2016 17:04:36 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: asomers@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: phil@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2016 17:04:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210326 Alan Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |asomers@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |phil@freebsd.org --- Comment #1 from Alan Somers --- $ uname -a FreeBSD alans-fbsd-head-i386.eng.sldomain.com 11.0-ALPHA3 FreeBSD 11.0-ALPH= A3 #0 r301815: Sat Jun 11 00:55:35 UTC 2016=20=20=20=20 root@releng2.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386 --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-i386@freebsd.org Thu Jun 16 17:39:37 2016 Return-Path: Delivered-To: freebsd-i386@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 AACE2A76C54 for ; Thu, 16 Jun 2016 17:39:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9A91A1878 for ; Thu, 16 Jun 2016 17:39:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u5GHdbod078130 for ; Thu, 16 Jun 2016 17:39:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-i386@FreeBSD.org Subject: [Bug 210329] usr.bin/lastcomm tests fail on i386 Date: Thu, 16 Jun 2016 17:39:37 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: tests X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: asomers@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-testing@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2016 17:39:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210329 Bug ID: 210329 Summary: usr.bin/lastcomm tests fail on i386 Product: Base System Version: 11.0-CURRENT Hardware: i386 OS: Any Status: New Severity: Affects Many People Priority: --- Component: tests Assignee: freebsd-testing@freebsd.org Reporter: asomers@FreeBSD.org CC: freebsd-i386@FreeBSD.org CC: freebsd-i386@FreeBSD.org The usr.bin/lastcomm tests pass on amd64, but fail on i386. It looks like = the golden output files were generated with the wrong time zone kyua debug legacy_test:main 1..6 Files - and /usr/tests/usr.bin/lastcomm/v1-i386.out differ not ok 1 Files - and /usr/tests/usr.bin/lastcomm/v1-i386.out differ not ok 2 Files - and /usr/tests/usr.bin/lastcomm/v2-i386.out differ not ok 3 Files - and /usr/tests/usr.bin/lastcomm/v2-i386.out differ not ok 4 Files - and v1v2-i386.out differ not ok 5 Files - and v1v2-i386.out differ not ok 6 legacy_test:main -> failed: 6 tests of 6 failed # uname -a FreeBSD alans-fbsd-head-i386.eng.sldomain.com 11.0-ALPHA3 FreeBSD 11.0-ALPH= A3 #0 r301815: Sat Jun 11 00:55:35 UTC 2016=20=20=20=20 root@releng2.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386 --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-i386@freebsd.org Thu Jun 16 18:23:45 2016 Return-Path: Delivered-To: freebsd-i386@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 C8DA5A77974; Thu, 16 Jun 2016 18:23:45 +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 BC7162A4E; Thu, 16 Jun 2016 18:23:45 +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 E2A5013E3; Thu, 16 Jun 2016 18:23:45 +0000 (UTC) Date: Thu, 16 Jun 2016 18:23:44 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: hselasky@FreeBSD.org, asomers@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <402116115.91.1466101425935.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1791842297.85.1466091432809.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1791842297.85.1466091432809.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #3402 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2016 18:23:45 -0000 FreeBSD_HEAD_i386 - Build #3402 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3402/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3402/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3402/console Change summaries: 301969 by hselasky: Add missing return statement. Approved by: re (gjb) MFC after: 1 week 301968 by hselasky: Add multiple missing descriptor parsing functions to the LibUSB v1.0 API. Approved by: re (kib) Requested by: swills MFC after: 1 week 301967 by asomers: Fix usr.sbin/rpcbind ATF tests on 32-bit platforms usr.sbin/rpcbind/tests/addrmerge_test.c Fix some sizeof calculations that work only by luck on 64-bit platforms. PR: 210314 Reviewed by: ngie Approved by: re (kib) Reported by: Mark Millard MFC after: 4 weeks Sponsored by: Spectra Logic Corp Differential Revision: https://reviews.freebsd.org/D6855 From owner-freebsd-i386@freebsd.org Fri Jun 17 01:34:16 2016 Return-Path: Delivered-To: freebsd-i386@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 62D31A470CB for ; Fri, 17 Jun 2016 01:34:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5324C177B for ; Fri, 17 Jun 2016 01:34:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u5H1YFtt047874 for ; Fri, 17 Jun 2016 01:34:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-i386@FreeBSD.org Subject: [Bug 210329] usr.bin/lastcomm tests fail on i386 Date: Fri, 17 Jun 2016 01:34:16 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: tests X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: jmmv@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-testing@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Jun 2016 01:34:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210329 --- Comment #1 from Julio Merino,+1 347 694 0576,New York City --- Kyua forces the TZ to be UTC for all tests. Also... why would the amd64 vs. i386 difference indicate anything about the timezone? --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-i386@freebsd.org Fri Jun 17 14:43:23 2016 Return-Path: Delivered-To: freebsd-i386@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 BC255A77E28 for ; Fri, 17 Jun 2016 14:43:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AC5B129EF for ; Fri, 17 Jun 2016 14:43:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u5HEhNFc080251 for ; Fri, 17 Jun 2016 14:43:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-i386@FreeBSD.org Subject: [Bug 210329] usr.bin/lastcomm tests fail on i386 Date: Fri, 17 Jun 2016 14:43:23 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: tests X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: asomers@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-testing@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Jun 2016 14:43:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210329 --- Comment #2 from Alan Somers --- The tests uses different golden output files for each arch. That's why I t= hink that the i386 files may have been recorded in the wrong time zone. --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-i386@freebsd.org Fri Jun 17 14:53:52 2016 Return-Path: Delivered-To: freebsd-i386@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 97E1BA78144 for ; Fri, 17 Jun 2016 14:53:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 882A91213 for ; Fri, 17 Jun 2016 14:53:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u5HErqST001251 for ; Fri, 17 Jun 2016 14:53:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-i386@FreeBSD.org Subject: [Bug 210329] usr.bin/lastcomm tests fail on i386 Date: Fri, 17 Jun 2016 14:53:52 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: tests X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: jmmv@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-testing@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Jun 2016 14:53:52 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210329 --- Comment #3 from Julio Merino,+1 347 694 0576,New York City --- Oh right, that's very likely. I think I dealt with these tests a while ago = and I did not have an i386 VM to regenerate the data for this architecture... --=20 You are receiving this mail because: You are on the CC list for the bug.=