changeset 5064:0fc040fa29bf

tests: improved debugging in vcs tests
author Mads Kiilerich <madski@unity3d.com>
date Fri, 24 Apr 2015 02:03:50 +0200
parents 55f855431f77
children 30419d563fb9
files kallithea/tests/other/manual_test_vcs_operations.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/tests/other/manual_test_vcs_operations.py	Fri Apr 24 02:03:50 2015 +0200
+++ b/kallithea/tests/other/manual_test_vcs_operations.py	Fri Apr 24 02:03:50 2015 +0200
@@ -65,7 +65,8 @@
         p = Popen(command, shell=True, stdout=PIPE, stderr=PIPE, cwd=self.cwd)
         stdout, stderr = p.communicate()
         if DEBUG:
-            print stdout, stderr
+            print 'stdout:', repr(stdout)
+            print 'stderr:', repr(stderr)
         return stdout, stderr