summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-01-04 17:26:22 -0800
committerZac Medico <zmedico@gentoo.org>2011-01-04 17:27:51 -0800
commitfa5251ae02094f6de74cb3cb22df42ef19989973 (patch)
treede30c61edb20ce8c435c2cce2bbba97477e519c3
parent3dbd7e8e025fb068a8e1abe27728991486640483 (diff)
downloadportage-fa5251ae02094f6de74cb3cb22df42ef19989973.tar.gz
portage-fa5251ae02094f6de74cb3cb22df42ef19989973.tar.bz2
portage-fa5251ae02094f6de74cb3cb22df42ef19989973.zip
REQUIRED_USE: test unsatisfied without USE depv2.1.9.29
-rw-r--r--pym/portage/tests/resolver/test_autounmask.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/pym/portage/tests/resolver/test_autounmask.py b/pym/portage/tests/resolver/test_autounmask.py
index 50ad85e90..4100fbdcf 100644
--- a/pym/portage/tests/resolver/test_autounmask.py
+++ b/pym/portage/tests/resolver/test_autounmask.py
@@ -47,6 +47,7 @@ class AutounmaskTestCase(TestCase):
"app-portage/A-2": { "DEPEND": "app-portage/B[foo=]", "IUSE": "+foo", "REQUIRED_USE": "foo", "EAPI": "4" },
"app-portage/B-1": { "IUSE": "foo +bar", "REQUIRED_USE": "^^ ( foo bar )", "EAPI": "4" },
+ "app-portage/C-1": { "IUSE": "+foo +bar", "REQUIRED_USE": "^^ ( foo bar )", "EAPI": "4" },
}
test_cases = (
@@ -179,6 +180,11 @@ class AutounmaskTestCase(TestCase):
options = { "--autounmask": True },
use_changes = None,
success = False),
+ ResolverPlaygroundTestCase(
+ ["=app-portage/C-1"],
+ options = { "--autounmask": True },
+ use_changes = None,
+ success = False),
)
playground = ResolverPlayground(ebuilds=ebuilds)