diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-10-15 04:30:44 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-10-15 04:30:44 +0000 |
commit | 87669c06359a4afd1d04867d0188892092d3e978 (patch) | |
tree | 07c794ba6c08d71d104e101fc75f070df6368d4e | |
parent | f12e625db1e6f8e0d45d4d2e71efc99a4dd72a76 (diff) | |
download | portage-87669c06359a4afd1d04867d0188892092d3e978.tar.gz portage-87669c06359a4afd1d04867d0188892092d3e978.tar.bz2 portage-87669c06359a4afd1d04867d0188892092d3e978.zip |
Add the "test" flag to implicit IUSE, so handling of FEATURES=test is
consistent regardless of explicit IUSE. Users may use use.mask and
package.use.mask to control FEATURES=test for all ebuilds, regardless of
explicit IUSE.
svn path=/main/trunk/; revision=14607
-rw-r--r-- | pym/portage/__init__.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 5a5fee85b..2454fbb4f 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -2725,7 +2725,7 @@ class config(object): not hasattr(self, "_ebuild_force_test_msg_shown"): self._ebuild_force_test_msg_shown = True writemsg(_("Forcing test.\n"), noiselevel=-1) - if "test" in self.features and "test" in iuse_implicit: + if "test" in self.features: if "test" in self.usemask and not ebuild_force_test: # "test" is in IUSE and USE=test is masked, so execution # of src_test() probably is not reliable. Therefore, @@ -2814,6 +2814,13 @@ class config(object): # build and bootstrap flags used by bootstrap.sh iuse_implicit.add("build") iuse_implicit.add("bootstrap") + + # Controlled by FEATURES=test. Make this implicit, so handling + # of FEATURES=test is consistent regardless of explicit IUSE. + # Users may use use.mask/package.use.mask to control + # FEATURES=test for all ebuilds, regardless of explicit IUSE. + iuse_implicit.add("test") + return iuse_implicit def _getUseMask(self, pkg): |