summaryrefslogtreecommitdiff
path: root/pym
diff options
context:
space:
mode:
authorOtavio Pontes <otaviobp@gmail.com>2010-08-03 14:32:59 +0000
committerOtavio Pontes <otaviobp@gmail.com>2010-08-03 14:32:59 +0000
commit3a9066f607b4a18a2ad1f1d9b2015a4779f61b95 (patch)
treef933f2f60cf97e4da196b03f871e816bd0a938e4 /pym
parentparameter was passed incorrectly (diff)
downloadportage-multirepo-3a9066f607b4a18a2ad1f1d9b2015a4779f61b95.tar.gz
portage-multirepo-3a9066f607b4a18a2ad1f1d9b2015a4779f61b95.tar.bz2
portage-multirepo-3a9066f607b4a18a2ad1f1d9b2015a4779f61b95.zip
Uncommenting tests that use to fail
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/tests/dep/testAtom.py52
1 files changed, 26 insertions, 26 deletions
diff --git a/pym/portage/tests/dep/testAtom.py b/pym/portage/tests/dep/testAtom.py
index c8302acc..a4972905 100644
--- a/pym/portage/tests/dep/testAtom.py
+++ b/pym/portage/tests/dep/testAtom.py
@@ -35,32 +35,32 @@ class TestAtom(TestCase):
]
tests_xfail = [
-# ( "cat/pkg[a!]", False ),
-# ( "cat/pkg[a-]", False ),
-# ( "cat/pkg[!a]", False ),
-# ( "cat/pkg[!a!]", False ),
-# ( "cat/pkg[!a-]", False ),
-# ( "cat/pkg[-a=]", False ),
-# ( "cat/pkg[-a?]", False ),
-# ( "cat/pkg[-a!]", False ),
-# ( "cat/pkg[-a-]", False ),
-# ( "cat/pkg[=a]", False ),
-# ( "cat/pkg[=a=]", False ),
-# ( "cat/pkg[=a?]", False ),
-# ( "cat/pkg[=a!]", False ),
-# ( "cat/pkg[=a-]", False ),
-# ( "cat/pkg[?a]", False ),
-# ( "cat/pkg[?a=]", False ),
-# ( "cat/pkg[?a?]", False ),
-# ( "cat/pkg[?a!]", False ),
-# ( "cat/pkg[?a-]", False ),
-# ( "sys-apps/portage[doc]:0", False ),
-# ( "*/*", False ),
-# ( "sys-apps/*", False ),
-# ( "*/portage", False ),
-# ( "*/**", True ),
-# ( "*/portage[use]", True ),
-# ( "*/portage:slot", True )
+ ( "cat/pkg[a!]", False ),
+ ( "cat/pkg[a-]", False ),
+ ( "cat/pkg[!a]", False ),
+ ( "cat/pkg[!a!]", False ),
+ ( "cat/pkg[!a-]", False ),
+ ( "cat/pkg[-a=]", False ),
+ ( "cat/pkg[-a?]", False ),
+ ( "cat/pkg[-a!]", False ),
+ ( "cat/pkg[-a-]", False ),
+ ( "cat/pkg[=a]", False ),
+ ( "cat/pkg[=a=]", False ),
+ ( "cat/pkg[=a?]", False ),
+ ( "cat/pkg[=a!]", False ),
+ ( "cat/pkg[=a-]", False ),
+ ( "cat/pkg[?a]", False ),
+ ( "cat/pkg[?a=]", False ),
+ ( "cat/pkg[?a?]", False ),
+ ( "cat/pkg[?a!]", False ),
+ ( "cat/pkg[?a-]", False ),
+ ( "sys-apps/portage[doc]:0", False ),
+ ( "*/*", False ),
+ ( "sys-apps/*", False ),
+ ( "*/portage", False ),
+ ( "*/**", True ),
+ ( "*/portage[use]", True ),
+ ( "*/portage:slot", True )
]
for atom, parts, allow_wildcard in tests: