From owner-svn-src-head@freebsd.org Wed Sep 28 12:13:54 2016 Return-Path: Delivered-To: svn-src-head@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 25F71C00F76; Wed, 28 Sep 2016 12:13:54 +0000 (UTC) (envelope-from rb743@hermes.cam.ac.uk) Received: from ppsw-31.csi.cam.ac.uk (ppsw-31.csi.cam.ac.uk [131.111.8.131]) (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 E7871A4B; Wed, 28 Sep 2016 12:13:53 +0000 (UTC) (envelope-from rb743@hermes.cam.ac.uk) X-Cam-AntiVirus: no malware found X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ Received: from sc1.bsdpad.com ([163.172.212.18]:51406) by ppsw-31.csi.cam.ac.uk (smtp.hermes.cam.ac.uk [131.111.8.157]:587) with esmtpsa (LOGIN:rb743) (TLSv1:ECDHE-RSA-AES256-SHA:256) id 1bpDk8-000Cte-Lf (Exim 4.86_36-e07b163) (return-path ); Wed, 28 Sep 2016 13:13:44 +0100 Date: Wed, 28 Sep 2016 12:13:42 +0000 From: Ruslan Bukin To: Ngie Cooper Cc: Ruslan Bukin , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r306397 - head/contrib/netbsd-tests/lib/libc/gen Message-ID: <20160928121342.GA45465@bsdpad.com> References: <201609280845.u8S8jhkF058371@repo.freebsd.org> <5768D1B8-A03C-4D9D-B884-3CBF3B1193BD@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <5768D1B8-A03C-4D9D-B884-3CBF3B1193BD@gmail.com> User-Agent: Mutt/1.6.1 (2016-04-27) Sender: "R. Bukin" X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Sep 2016 12:13:54 -0000 On Wed, Sep 28, 2016 at 07:44:20PM +0900, Ngie Cooper wrote: > > > On Sep 28, 2016, at 17:45, Ruslan Bukin wrote: > > > > Author: br > > Date: Wed Sep 28 08:45:42 2016 > > New Revision: 306397 > > URL: https://svnweb.freebsd.org/changeset/base/306397 > > > > Log: > > Use right piece of code for FreeBSD. > > > > Sponsored by: DARPA, AFRL > > Sponsored by: HEIF5 > > > > Modified: > > head/contrib/netbsd-tests/lib/libc/gen/t_nice.c > > I didn't run into this problem on amd64 -- what was the symptom that you ran into? > Thanks, I think pri and pri2 here were not equeal (as pri2 was not initialized at all) so test failed. if (pri != pri2) _exit(EXIT_FAILURE); Very interesting why it works on amd64. Ruslan