From owner-svn-src-head@freebsd.org Wed Mar 15 05:22:41 2017 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 B248FD0A549; Wed, 15 Mar 2017 05:22:41 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.glebi.us (glebi.us [96.95.210.25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "cell.glebi.us", Issuer "cell.glebi.us" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 99D901309; Wed, 15 Mar 2017 05:22:41 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.glebi.us (localhost [127.0.0.1]) by cell.glebi.us (8.15.2/8.15.2) with ESMTPS id v2F5MdeV004158 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 14 Mar 2017 22:22:40 -0700 (PDT) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.glebi.us (8.15.2/8.15.2/Submit) id v2F5Mdgc004157; Tue, 14 Mar 2017 22:22:39 -0700 (PDT) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.glebi.us: glebius set sender to glebius@FreeBSD.org using -f Date: Tue, 14 Mar 2017 22:22:39 -0700 From: Gleb Smirnoff To: Ngie Cooper Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r315230 - in head: etc/mtree tests/sys/geom tests/sys/geom/class/eli tests/sys/geom/eli Message-ID: <20170315052239.GC1072@FreeBSD.org> References: <201703140700.v2E70MXc091919@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201703140700.v2E70MXc091919@repo.freebsd.org> User-Agent: Mutt/1.7.2 (2016-11-26) 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, 15 Mar 2017 05:22:41 -0000 On Tue, Mar 14, 2017 at 07:00:22AM +0000, Ngie Cooper wrote: N> Author: ngie N> Date: Tue Mar 14 07:00:22 2017 N> New Revision: 315230 N> URL: https://svnweb.freebsd.org/changeset/base/315230 N> N> Log: N> Move .../sys/geom/eli/pbkdf2... to .../sys/geom/class/eli/... N> N> This change moves the tests added in r313962 to an existing directory N> structure used by the geli TAP tests. It also, renames the test from N> pbkdf2 to pbkdf2_test . N> N> The changes to ObsoleteFiles.inc are being committed separately as they N> aren't needed for the MFC to ^/stable/11, etc, if the MFC for the tests N> is done all in one commit. N> N> MFC after: 2 weeks N> X-MFC with: r313962, r313972-r313973 N> Reviewed by: allanjude N> Sponsored by: Dell EMC Isilon N> Differential Revision: D9985 This breaks buildworld for a system that doesn't have SYSDIR defined in src.conf, and also doesn't have /usr/src/sys. What happens is that include path is /sys. On some systems this is meaningful, on others not. glebius@morannon:/usr/src/head/tests/sys/geom/class/eli:|>make (cd /usr/src/head/tests/sys/geom/class/eli && DEPENDFILE=.depend.pbkdf2_test NO_SUBDIR=1 make -f /usr/src/head/tests/sys/geom/class/eli/Makefile _RECURSING_PROGS=t PROG=pbkdf2_test ) cc -O2 -pipe -I/sys -g -MD -MF.depend.pbkdf2_test.g_eli_crypto.o -MTg_eli_crypto.o -std=gnu99 -fstack-protector-strong -Qunused-arguments -c /usr/src/head/sys/geom/eli/g_eli_crypto.c -o g_eli_crypto.o In file included from /usr/src/head/sys/geom/eli/g_eli_crypto.c:44: /usr/include/geom/eli/g_eli.h:35:10: fatal error: 'crypto/sha2/sha256.h' file not found #include This also breaks buildworld. -- Totus tuus, Glebius.