summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2013-07-07 13:25:23 -0700
committerZac Medico <zmedico@gentoo.org>2013-07-07 13:25:23 -0700
commitc6ae519aafbce0b4bc8bfb9c8ec97055d3ac06d8 (patch)
tree8746b6769ea85109090b1f324630772aab0428a7
parenttest_doebuild_fd_pipes: test pkg_info (diff)
downloadportage-2.2.0_alpha187.tar.gz
portage-2.2.0_alpha187.tar.bz2
portage-2.2.0_alpha187.zip
test_doebuild_fd_pipes: test qmergev2.2.0_alpha187
-rw-r--r--pym/portage/tests/ebuild/test_doebuild_fd_pipes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/tests/ebuild/test_doebuild_fd_pipes.py b/pym/portage/tests/ebuild/test_doebuild_fd_pipes.py
index f0fc93373..91c5bd649 100644
--- a/pym/portage/tests/ebuild/test_doebuild_fd_pipes.py
+++ b/pym/portage/tests/ebuild/test_doebuild_fd_pipes.py
@@ -81,7 +81,7 @@ class DoebuildFdPipesTestCase(TestCase):
for phase in ('info', 'nofetch',
'pretend', 'setup', 'unpack', 'prepare', 'configure',
- 'compile', 'test', 'install', 'clean', 'merge'):
+ 'compile', 'test', 'install', 'qmerge', 'clean', 'merge'):
pr, pw = os.pipe()
@@ -113,7 +113,7 @@ class DoebuildFdPipesTestCase(TestCase):
self.assertEqual(task_scheduler.returncode, os.EX_OK)
- if phase not in ('clean', 'merge'):
+ if phase not in ('clean', 'merge', 'qmerge'):
self.assertEqual(phase, output)
finally: