From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Rb3mv-0001XQ-VM for garchives@archives.gentoo.org; Thu, 15 Dec 2011 05:23:26 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7E1ED21C056; Thu, 15 Dec 2011 05:23:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 47D3F21C056 for ; Thu, 15 Dec 2011 05:23:17 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A9DA61B4002 for ; Thu, 15 Dec 2011 05:23:16 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id 7C28C2004B; Thu, 15 Dec 2011 05:23:15 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: flag-o-matic.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: flag-o-matic.eclass X-VCS-Directories: eclass X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Message-Id: <20111215052315.7C28C2004B@flycatcher.gentoo.org> Date: Thu, 15 Dec 2011 05:23:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 153465eb-240c-45b2-b5d1-74c046878acc X-Archives-Hash: 4d8ed300d241ff58e3b2fe98718f2f85 vapier 11/12/15 05:23:15 Modified: flag-o-matic.eclass Log: relocate tests to tests/ subdir Revision Changes Path 1.161 eclass/flag-o-matic.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/flag-o-mati= c.eclass?rev=3D1.161&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/flag-o-mati= c.eclass?rev=3D1.161&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/flag-o-mati= c.eclass?r1=3D1.160&r2=3D1.161 Index: flag-o-matic.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v retrieving revision 1.160 retrieving revision 1.161 diff -u -r1.160 -r1.161 --- flag-o-matic.eclass 10 Dec 2011 20:03:17 -0000 1.160 +++ flag-o-matic.eclass 15 Dec 2011 05:23:15 -0000 1.161 @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.160 20= 11/12/10 20:03:17 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.161 20= 11/12/15 05:23:15 vapier Exp $ =20 # @ECLASS: flag-o-matic.eclass # @MAINTAINER: @@ -687,30 +687,4 @@ esac } =20 -# Some tests for when we screw with things and want to make -# sure we didn't break anything -#TESTS() { -# CFLAGS=3D"-a -b -c=3D1" -# CXXFLAGS=3D"-x -y -z=3D2" -# LDFLAGS=3D"-l -m -n=3D3" -# -# die() { exit 1; } -# (is-flag 1 2 3) && die -# (is-ldflag 1 2 3) && die -# -# is-flagq -l && die -# is-ldflagq -a && die -# is-flagq -a || die -# is-flagq -x || die -# is-ldflagq -n=3D* || die -# is-ldflagq -n && die -# -# strip-unsupported-flags -# [[ ${CFLAGS} =3D=3D "-c=3D1" ]] || die -# [[ ${CXXFLAGS} =3D=3D "-y -z=3D2" ]] || die -# -# echo "All tests pass" -#} -#TESTS - fi