Rev 5280: Merge first-try into propagate-exceptions in file:///home/vila/src/bzr/experimental/leaking-tests/

Vincent Ladeuil v.ladeuil+lp at free.fr
Thu Jun 10 18:23:05 BST 2010


At file:///home/vila/src/bzr/experimental/leaking-tests/

------------------------------------------------------------
revno: 5280 [merge]
revision-id: v.ladeuil+lp at free.fr-20100610172305-qh8e8tmt9gj8mdzl
parent: v.ladeuil+lp at free.fr-20100610170142-ofbnlol41iis4g9e
parent: v.ladeuil+lp at free.fr-20100610172304-1xafu0vfk8lzceo6
committer: Vincent Ladeuil <v.ladeuil+lp at free.fr>
branch nick: propagate-exceptions
timestamp: Thu 2010-06-10 19:23:05 +0200
message:
  Merge first-try into propagate-exceptions
modified:
  bzrlib/tests/__init__.py       selftest.py-20050531073622-8d0e3c8845c97a64
-------------- next part --------------
=== modified file 'bzrlib/tests/__init__.py'
--- a/bzrlib/tests/__init__.py	2010-06-02 14:50:04 +0000
+++ b/bzrlib/tests/__init__.py	2010-06-10 17:23:05 +0000
@@ -3313,11 +3313,11 @@
                 '--subunit']
             if '--no-plugins' in sys.argv:
                 argv.append('--no-plugins')
-            # stderr=subrocess.STDOUT would be ideal, but until we prevent
+            # stderr=subprocess.STDOUT would be ideal, but until we prevent
             # noise on stderr it can interrupt the subunit protocol.
-            process = subrocess.Popen(argv, stdin=subrocess.PIPE,
-                                      stdout=subrocess.PIPE,
-                                      stderr=subrocess.PIPE,
+            process = subprocess.Popen(argv, stdin=subprocess.PIPE,
+                                      stdout=subprocess.PIPE,
+                                      stderr=subprocess.PIPE,
                                       bufsize=1)
             test = TestInSubprocess(process, test_list_file_name)
             result.append(test)



More information about the bazaar-commits mailing list