projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
46a3968
)
use_reduce: Add non-working test for bug 340973.
author
Zac Medico
<zmedico@gentoo.org>
Fri, 15 Oct 2010 11:37:50 +0000
(
04:37
-0700)
committer
Zac Medico
<zmedico@gentoo.org>
Fri, 15 Oct 2010 11:37:50 +0000
(
04:37
-0700)
pym/portage/tests/dep/test_use_reduce.py
patch
|
blob
|
history
diff --git
a/pym/portage/tests/dep/test_use_reduce.py
b/pym/portage/tests/dep/test_use_reduce.py
index 026f194e26dae69b8d962d1db68cf10ef4d19df2..44f9fd710795a2a7aba91fa8e5405f67acf716c7 100644
(file)
--- a/
pym/portage/tests/dep/test_use_reduce.py
+++ b/
pym/portage/tests/dep/test_use_reduce.py
@@
-317,6
+317,12
@@
class UseReduce(TestCase):
"A || ( B C )",
opconvert = True,
expected_result = ['A', ['||', 'B', 'C']]),
+ # ['A', ['||', 'B', '||', 'C', 'D', 'E'], 'G'] != ['A', ['||', 'B', 'C', 'D', 'E'], 'G']
+ #UseReduceTestCase(
+ # "A foo? ( || ( B || ( bar? ( || ( C D E ) ) !bar? ( F ) ) ) ) G",
+ # uselist = ["foo", "bar"],
+ # opconvert = True,
+ # expected_result = ['A', ['||', 'B', 'C', 'D', 'E'], 'G']),
UseReduceTestCase(
"|| ( A )",