diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-12-15 05:23:15 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-12-15 05:23:15 +0000 |
commit | 8a6f6c4c06055ecdeba5d823d3727cd382a26020 (patch) | |
tree | 860ed16056384da6408cc2a78358b8c766280ba2 /eclass/flag-o-matic.eclass | |
parent | relocate tests to tests/ subdir (diff) | |
download | gentoo-2-8a6f6c4c06055ecdeba5d823d3727cd382a26020.tar.gz gentoo-2-8a6f6c4c06055ecdeba5d823d3727cd382a26020.tar.bz2 gentoo-2-8a6f6c4c06055ecdeba5d823d3727cd382a26020.zip |
relocate tests to tests/ subdir
Diffstat (limited to 'eclass/flag-o-matic.eclass')
-rw-r--r-- | eclass/flag-o-matic.eclass | 28 |
1 files changed, 1 insertions, 27 deletions
diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass index 5fbb60770bdf..0c7c4700d490 100644 --- a/eclass/flag-o-matic.eclass +++ b/eclass/flag-o-matic.eclass @@ -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 2011/12/10 20:03:17 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.161 2011/12/15 05:23:15 vapier Exp $ # @ECLASS: flag-o-matic.eclass # @MAINTAINER: @@ -687,30 +687,4 @@ no-as-needed() { esac } -# Some tests for when we screw with things and want to make -# sure we didn't break anything -#TESTS() { -# CFLAGS="-a -b -c=1" -# CXXFLAGS="-x -y -z=2" -# LDFLAGS="-l -m -n=3" -# -# 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=* || die -# is-ldflagq -n && die -# -# strip-unsupported-flags -# [[ ${CFLAGS} == "-c=1" ]] || die -# [[ ${CXXFLAGS} == "-y -z=2" ]] || die -# -# echo "All tests pass" -#} -#TESTS - fi |