From owner-svn-src-stable@freebsd.org Tue Sep 12 09:45:42 2017 Return-Path: Delivered-To: svn-src-stable@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 E7EBAE24F4C; Tue, 12 Sep 2017 09:45:42 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: from mail-pg0-f45.google.com (mail-pg0-f45.google.com [74.125.83.45]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BBA526AB9B; Tue, 12 Sep 2017 09:45:42 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: by mail-pg0-f45.google.com with SMTP id u18so3783542pgo.0; Tue, 12 Sep 2017 02:45:42 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=VfIwAVG4oJx2B9tWvUCz380x57VBG8Kdyr2ZDQlvfz0=; b=o8TO52kzrqze1MQHKhat1dyqSRtUCWhmQCvUZFU+mVUJU0JMQpdI6TGS0bNWVCvFTm 4//+84YpTlD5vpNur6IHyseMbZHBePhxw3ka8Vo3I3gvgwD5z0toL5ggIewQ9VKV3Wrq AwrYXxpg5HMLCzOukv58NKZTz30nPTd5023bemu1PDVCP1qAPNuYmIOio8EgvWYQFEGn KMp3RhN6bUV9ct6Yeuvq3h6eh1DS0LxhPTB3Do1BJcuiDDzxD0NHx5xlm1cR/cygITSu LRL37SmUMn2V94VOjEB8Jr2Zt33Lp7epQcXdAx3j45383piEcX2gpRpJKFQt2sM2iyZg dwqQ== X-Gm-Message-State: AHPjjUhTP0dK6ZE/TZKN0SkYwGqgUpb6AkkC7GFZMCix+Q+/sMVj5EeR sysgXQRJQ5hr/ILXLBas9g== X-Received: by 10.84.133.99 with SMTP id 90mr8998178plf.148.1505209536547; Tue, 12 Sep 2017 02:45:36 -0700 (PDT) Received: from mail-pg0-f47.google.com (mail-pg0-f47.google.com. [74.125.83.47]) by smtp.gmail.com with ESMTPSA id r90sm19130695pfb.183.2017.09.12.02.45.35 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 12 Sep 2017 02:45:36 -0700 (PDT) Received: by mail-pg0-f47.google.com with SMTP id j16so10093481pga.1; Tue, 12 Sep 2017 02:45:35 -0700 (PDT) X-Google-Smtp-Source: ADKCNb5Zj0FyQtVx0M5ZAfO0E5A/7SL9YkFU3vNwmyiNffyzLoUO1sHfWJAkq6EbbPMWjdVSGVsFVXlDnZYqs9JolKE= X-Received: by 10.98.149.207 with SMTP id c76mr14605472pfk.198.1505209535484; Tue, 12 Sep 2017 02:45:35 -0700 (PDT) MIME-Version: 1.0 Received: by 10.100.207.193 with HTTP; Tue, 12 Sep 2017 02:45:35 -0700 (PDT) In-Reply-To: <201709080437.v884bnIh029199@repo.freebsd.org> References: <201709080437.v884bnIh029199@repo.freebsd.org> From: Ryan Libby Date: Tue, 12 Sep 2017 02:45:35 -0700 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r323299 - stable/11/lib/msun/tests To: Ngie Cooper Cc: src-committers , svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Sep 2017 09:45:43 -0000 On Thu, Sep 7, 2017 at 9:37 PM, Ngie Cooper wrote: > Author: ngie > Date: Fri Sep 8 04:37:49 2017 > New Revision: 323299 > URL: https://svnweb.freebsd.org/changeset/base/323299 > > Log: > MFC r321455: > > Raise WARNS to 1 > > This will enable warnings with the msun tests. > > Modified: > stable/11/lib/msun/tests/Makefile > Directory Properties: > stable/11/ (props changed) > > Modified: stable/11/lib/msun/tests/Makefile > ============================================================================== > --- stable/11/lib/msun/tests/Makefile Fri Sep 8 04:35:44 2017 (r323298) > +++ stable/11/lib/msun/tests/Makefile Fri Sep 8 04:37:49 2017 (r323299) > @@ -4,8 +4,6 @@ > > TESTSRC= ${SRCTOP}/contrib/netbsd-tests/lib/libm > > -WARNS?= 0 > - > # All architectures on FreeBSD have fenv.h > CFLAGS+= -DHAVE_FENV_H > > @@ -85,6 +83,8 @@ IGNORE_PRAGMA= > SRCS.ilogb2_test= ilogb_test.c > > LIBADD+= m > + > +WARNS?= 1 > > # Copied from lib/msun/Makefile > .if ${MACHINE_CPUARCH} == "i386" This seems to have broken the i386 build [1]. Did you mean to MFC it with r321483? [1] https://ci.freebsd.org/job/FreeBSD-stable-11-i386-build/1521/