From owner-svn-src-projects@freebsd.org Tue Jul 25 03:33:40 2017 Return-Path: Delivered-To: svn-src-projects@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 2DF9DDB3D66 for ; Tue, 25 Jul 2017 03:33:40 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (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 F17F165229; Tue, 25 Jul 2017 03:33:39 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6P3XdKc053865; Tue, 25 Jul 2017 03:33:39 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6P3XdHU053864; Tue, 25 Jul 2017 03:33:39 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201707250333.v6P3XdHU053864@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Ngie Cooper Date: Tue, 25 Jul 2017 03:33:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r321451 - projects/runtime-coverage/lib/msun/tests X-SVN-Group: projects X-SVN-Commit-Author: ngie X-SVN-Commit-Paths: projects/runtime-coverage/lib/msun/tests X-SVN-Commit-Revision: 321451 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jul 2017 03:33:40 -0000 Author: ngie Date: Tue Jul 25 03:33:39 2017 New Revision: 321451 URL: https://svnweb.freebsd.org/changeset/base/321451 Log: Raise WARNS to 1 This will enable warnings with the msun tests. MFC after: 1 month Modified: projects/runtime-coverage/lib/msun/tests/Makefile Modified: projects/runtime-coverage/lib/msun/tests/Makefile ============================================================================== --- projects/runtime-coverage/lib/msun/tests/Makefile Tue Jul 25 01:50:37 2017 (r321450) +++ projects/runtime-coverage/lib/msun/tests/Makefile Tue Jul 25 03:33:39 2017 (r321451) @@ -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"