diff options
author | Zac Medico <zmedico@gentoo.org> | 2011-01-04 17:26:22 -0800 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2011-01-04 17:26:22 -0800 |
commit | 78811731faec4ad6c5f042e070cae11731a00d84 (patch) | |
tree | a94fdeebfd7a33cc76573e78534c2868a0cf0ac0 | |
parent | composite_db: use ebuild visibility for installed (diff) | |
download | portage-2.2.0_alpha13.tar.gz portage-2.2.0_alpha13.tar.bz2 portage-2.2.0_alpha13.zip |
REQUIRED_USE: test unsatisfied without USE depv2.2.0_alpha13
-rw-r--r-- | pym/portage/tests/resolver/test_autounmask.py | 6 |
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 e58a64375..9e50be7ed 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) |