From owner-svn-src-stable-11@freebsd.org Wed Sep 13 02:32:20 2017 Return-Path: Delivered-To: svn-src-stable-11@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 DCB30E066AA; Wed, 13 Sep 2017 02:32:20 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: from mail-pf0-f174.google.com (mail-pf0-f174.google.com [209.85.192.174]) (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 B364A6E918; Wed, 13 Sep 2017 02:32:20 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: by mail-pf0-f174.google.com with SMTP id q76so7863648pfq.2; Tue, 12 Sep 2017 19:32:20 -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=vkygJu6QHKkQ8wTNgFsIpmR2uDMfcVm414nG7njIlPo=; b=XyExWHEP/ZmXaeMjdcP5L+wHwy0JdfSAaNSTtKGTTCNNAhUDC271gDizRdy5/dFr5y 2fWnQK4XgnmFxtsLnn/4hr0z11ley9KNHCfxRrK66IXY7FIm1RNCjE6OG32YlfjGw6NL 3/FpGkQ+pedn+WV+5FIwR/AjtKBndGOGH+kbzavL5/8ceSz/sFAGnMisiASjWfh3IkEm t4uKR6CI8ksPkRX20lx8Auqx6W2nljRkont9un7paBI4RyEnpptCyer1VTXQQ/XXAekK Yb9P8vVF0M0872NjAGOEipgOzv847to1Lt9KPRXFmHLRjKv8BRmLfXMDsxEclVJsKNbf Kv8w== X-Gm-Message-State: AHPjjUhLxyh3oysyTsCfe6vApNF1dBonT+tUVIw7jYrb9LGy9D9aS3/Q gnbAKL/FqzpU3jAMC5iJeQ== X-Received: by 10.84.210.69 with SMTP id z63mr19294377plh.431.1505269933486; Tue, 12 Sep 2017 19:32:13 -0700 (PDT) Received: from mail-pg0-f46.google.com (mail-pg0-f46.google.com. [74.125.83.46]) by smtp.gmail.com with ESMTPSA id h88sm23532204pfa.24.2017.09.12.19.32.13 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 12 Sep 2017 19:32:13 -0700 (PDT) Received: by mail-pg0-f46.google.com with SMTP id j16so14518094pga.1; Tue, 12 Sep 2017 19:32:13 -0700 (PDT) X-Google-Smtp-Source: ADKCNb7NkD8zpuESEd+7E18J2GMEgp8VFMV2l5iPbnGzHZ+53Z0poq4tlL+mq1I6bKsk800r8KHBTCPXgprG57LzHQ4= X-Received: by 10.99.186.81 with SMTP id l17mr16278724pgu.170.1505269932942; Tue, 12 Sep 2017 19:32:12 -0700 (PDT) MIME-Version: 1.0 Received: by 10.100.207.193 with HTTP; Tue, 12 Sep 2017 19:32:12 -0700 (PDT) In-Reply-To: References: <201709080437.v884bnIh029199@repo.freebsd.org> From: Ryan Libby Date: Tue, 12 Sep 2017 19:32:12 -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-11@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for only the 11-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Sep 2017 02:32:21 -0000 On Tue, Sep 12, 2017 at 2:45 AM, Ryan Libby wrote: > 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/ I MFC'd head r321483 to stable/11 in r323515 in order to unbreak the build for i386. I realize this may not have been the plan, so, Ngie, you may like to follow up on that further.