From: Zac Medico Date: Wed, 18 Aug 2010 07:29:05 +0000 (-0700) Subject: Add commented test case for a known regression. X-Git-Tag: v2.2_rc68~115 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=7f947c1f847df7e51ec7a0168eaa8aa412d748e1;p=portage.git Add commented test case for a known regression. --- diff --git a/pym/portage/tests/dep/test_use_reduce.py b/pym/portage/tests/dep/test_use_reduce.py index f715f4dcf..3d89dbebd 100644 --- a/pym/portage/tests/dep/test_use_reduce.py +++ b/pym/portage/tests/dep/test_use_reduce.py @@ -169,6 +169,9 @@ class UseReduce(TestCase): UseReduceTestCase( "|| ( A B )", expected_result = [ "||", ["A", "B"] ]), + #UseReduceTestCase( + # "|| ( ( A B ) C )", + # expected_result = [ "||", [ ["A", "B"], "C"] ]), UseReduceTestCase( "|| ( A || ( B C ) )", expected_result = [ "||", ["A", "||", ["B", "C"]]]),