From owner-svn-src-head@freebsd.org Fri Oct 26 08:12:29 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C7F0210DB0C3; Fri, 26 Oct 2018 08:12:29 +0000 (UTC) (envelope-from andrew@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7E74A6BD86; Fri, 26 Oct 2018 08:12:29 +0000 (UTC) (envelope-from andrew@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5F9301E41B; Fri, 26 Oct 2018 08:12:29 +0000 (UTC) (envelope-from andrew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9Q8CTvO094871; Fri, 26 Oct 2018 08:12:29 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9Q8CS3L094868; Fri, 26 Oct 2018 08:12:28 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201810260812.w9Q8CS3L094868@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Fri, 26 Oct 2018 08:12:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r339770 - in head/lib/csu/tests: . dynamic static X-SVN-Group: head X-SVN-Commit-Author: andrew X-SVN-Commit-Paths: in head/lib/csu/tests: . dynamic static X-SVN-Commit-Revision: 339770 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.29 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: Fri, 26 Oct 2018 08:12:30 -0000 Author: andrew Date: Fri Oct 26 08:12:28 2018 New Revision: 339770 URL: https://svnweb.freebsd.org/changeset/base/339770 Log: Drop the csu tests WARNS to 5 to fix the powerpc64 build. MFC with: r339738 Sponsored by: DARPA, AFRL Modified: head/lib/csu/tests/Makefile.tests head/lib/csu/tests/dynamic/Makefile head/lib/csu/tests/static/Makefile Modified: head/lib/csu/tests/Makefile.tests ============================================================================== --- head/lib/csu/tests/Makefile.tests Fri Oct 26 06:12:56 2018 (r339769) +++ head/lib/csu/tests/Makefile.tests Fri Oct 26 08:12:28 2018 (r339770) @@ -4,6 +4,8 @@ ATF_TESTS_C+= init_test ATF_TESTS_C+= fini_test ATF_TESTS_CXX+= cxx_constructors +WARNS?= 5 + .if exists(${.CURDIR:H:H}/${MACHINE_ARCH}) CFLAGS+= -I${.CURDIR:H:H}/${MACHINE_ARCH} .else Modified: head/lib/csu/tests/dynamic/Makefile ============================================================================== --- head/lib/csu/tests/dynamic/Makefile Fri Oct 26 06:12:56 2018 (r339769) +++ head/lib/csu/tests/dynamic/Makefile Fri Oct 26 08:12:28 2018 (r339770) @@ -1,7 +1,6 @@ # $FreeBSD$ .PATH: ${.CURDIR:H} -WARNS?= 6 .include "../Makefile.tests" .include Modified: head/lib/csu/tests/static/Makefile ============================================================================== --- head/lib/csu/tests/static/Makefile Fri Oct 26 06:12:56 2018 (r339769) +++ head/lib/csu/tests/static/Makefile Fri Oct 26 08:12:28 2018 (r339770) @@ -2,7 +2,6 @@ .PATH: ${.CURDIR:H} NO_SHARED= -WARNS?= 6 .include "../Makefile.tests" .include